mentorenwahl/config/nginx/nginx.conf

19 lines
234 B
Nginx Configuration File
Raw Normal View History

2022-01-08 12:29:22 +00:00
events {
}
http {
server {
2022-01-29 15:40:39 +00:00
location / {
proxy_pass http://frontend:3000/;
}
2022-01-08 12:29:22 +00:00
location /graphql {
2022-01-29 15:40:39 +00:00
proxy_pass http://backend/;
2022-01-08 12:29:22 +00:00
}
location /adminer {
2022-01-29 15:40:39 +00:00
proxy_pass http://adminer:8080/;
2022-01-08 12:29:22 +00:00
}
}
}