1
0
ohmyform/nginx.conf

16 lines
314 B
Nginx Configuration File
Raw Normal View History

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