TradeGame/client/Private/nginx.conf

23 lines
417 B
Nginx Configuration File
Raw Normal View History

2020-12-30 13:44:25 +00:00
worker_processes auto;
daemon off;
error_log nginx_error.log;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
server {
location /submit {
2020-12-30 15:48:33 +00:00
proxy_pass http://tradegame:5000/submit;
}
location /status {
proxy_pass http://tradegame:5000/status;
2020-12-30 13:44:25 +00:00
}
location / {
root /usr/share/nginx/html;
}
}
}