mentorenwahl/config/nginx/nginx.conf

21 lines
325 B
Nginx Configuration File
Raw Normal View History

2022-01-08 12:29:22 +00:00
events {
}
http {
server {
# location / {
# # proxy_set_header Host $host;
# # proxy_set_header X-Real-IP $remote_addr;
# # proxy_pass http://frontend:3000;
# }
location /graphql {
2022-01-20 20:17:24 +00:00
proxy_pass http://api;
2022-01-08 12:29:22 +00:00
}
location /adminer {
proxy_pass http://adminer:8080;
}
}
}