1st Versionwith nginx, gunicorn and flask

This commit is contained in:
2024-03-11 11:56:30 +01:00
commit fcaa0d5d72
35 changed files with 1322 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/vrpmdv.local;
index index.html index.htm;
server_name vrpmdv.local;
location / {
try_files $uri $uri/ =404;
}
}