Archived
Private
Public Access
1
0

v0.1.1 (added substitution functions + switched to pwa)

This commit is contained in:
2023-05-01 16:06:44 +02:00
parent e55cbfe4c6
commit f8c0f5d288
86 changed files with 148 additions and 993 deletions

View File

@@ -0,0 +1,9 @@
server {
listen 80 default_server;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}