Server side done

This commit is contained in:
nannal
2020-12-30 15:44:25 +02:00
parent ae911cf059
commit 1decbb8e91
9 changed files with 591 additions and 1 deletions

19
client/Private/nginx.conf Normal file
View File

@@ -0,0 +1,19 @@
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/submit;
}
location / {
root /usr/share/nginx/html;
}
}
}