23 lines
417 B
Nginx Configuration File
23 lines
417 B
Nginx Configuration File
worker_processes auto;
|
|
daemon off;
|
|
error_log nginx_error.log;
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
server {
|
|
|
|
location /submit {
|
|
proxy_pass http://tradegame:5000/submit;
|
|
}
|
|
location /status {
|
|
proxy_pass http://tradegame:5000/status;
|
|
}
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
}
|
|
}
|