mentorenwahl/config/nginx/nginx.conf
2022-01-08 13:29:22 +01:00

21 lines
334 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:8080;
}
location /adminer {
proxy_pass http://adminer:8080;
}
}
}