first commit

This commit is contained in:
2021-05-14 14:41:00 +05:30
commit b9f8614ddf
385 changed files with 31180 additions and 0 deletions

10
nginx/appseed-app.conf Normal file
View File

@@ -0,0 +1,10 @@
server {
listen 85;
location / {
proxy_pass http://localhost:5005/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}