1
0
ohmyform/nginx.conf
Michael Schramm 5414f3b371 - switched to supervisord based combined container
- heroku deployments
2021-05-02 15:53:01 +02:00

16 lines
314 B
Nginx Configuration File

server {
listen 3000;
location / {
proxy_pass http://localhost:4000;
proxy_redirect off;
proxy_set_header Host $host;
}
location /graphql {
proxy_pass http://localhost:4100;
proxy_redirect off;
proxy_set_header Host $host;
}
}