initial commit

This commit is contained in:
2022-12-16 09:53:19 +07:00
commit c33dabd024
11 changed files with 4212 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
server {
listen *:80;
root /opt/neko/dist;
index index.html;
client_max_body_size 100m;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
sendfile off;
location / {
root /opt/neko/dist;
index index.html;
}
}