mentorenwahl/config/nginx/nginx.conf

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;
}
}
}