1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00

Add nginx config file

This commit is contained in:
Mo 2022-04-20 02:12:07 +02:00
parent cbf1bfbd12
commit 598c08545b

9
scripts/advlabdb.conf Normal file
View file

@ -0,0 +1,9 @@
server {
listen 80;
server_name 127.0.0.1;
location / {
include proxy_params;
proxy_pass http://unix:/home/admin/advlabdb/gunicorn.sock;
}
}