mentorenwahl/config/nginx/nginx.conf
Dominic Grimm 5bc10f8aaf
Some checks failed
continuous-integration/drone/push Build is failing
Added worker
2022-01-23 09:12:57 +01:00

21 lines
329 B
Nginx Configuration File

events {
}
http {
server {
# location / {
# # proxy_set_header Host $host;
# # proxy_set_header X-Real-IP $remote_addr;
# # proxy_pass http://frontend:3000;
# }
location /graphql {
proxy_pass http://backend;
}
location /adminer {
proxy_pass http://adminer:8080;
}
}
}