Basic application

This commit is contained in:
C9E4F7
2020-11-30 17:24:45 +02:00
parent 8be04950de
commit d310a97a7b
5 changed files with 119 additions and 0 deletions

19
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 /wave {
proxy_pass http://10.0.0.205:5000;
}
location / {
root /usr/share/nginx/html;
}
}
}