This commit is contained in:
2021-11-17 20:08:20 +00:00
parent a98af6e6bb
commit 252d27d23f
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
server {
listen 80 default_server;
listen [::]:80 ;
index index.html index.htm index.nginx-debian.html;
server_name _;
root /var/www/html;
location / {
include uwsgi_params;
uwsgi_pass unix:///srv/simple_sample_flat_index/uwsgi.sock;
}
}