inicia o projeto com traefik e uvicorn

This commit is contained in:
2025-06-18 10:13:22 -04:00
commit 1e018e7b07
104 changed files with 4233 additions and 0 deletions

View File

@ -0,0 +1,2 @@
FROM docker.io/nginx:1.17.8-alpine
COPY ./compose/production/nginx/default.conf /etc/nginx/conf.d/default.conf

View File

@ -0,0 +1,7 @@
server {
listen 80;
server_name localhost;
location /media/ {
alias /usr/share/nginx/media/;
}
}