Browse Source

add nginx config

subDesTagesMitExtraKaese 2 years ago
parent
commit
3e3a41aebb
2 changed files with 9 additions and 0 deletions
  1. 2 0
      .gitignore
  2. 7 0
      nginx.conf

+ 2 - 0
.gitignore

@@ -59,3 +59,5 @@ docs/_build/
 target/
 
 *.sqlite3
+/static/
+/data/

+ 7 - 0
nginx.conf

@@ -0,0 +1,7 @@
+server {
+  listen 8000;
+  server_name  localhost;
+  location ^/static {
+    try_files $uri $uri/ =404;
+  }
+}