mirror of
https://github.com/Dannecron/parcel-example-neko.git
synced 2025-12-25 15:22:37 +03:00
initial commit
This commit is contained in:
17
nginx/templates/default.conf.template
Normal file
17
nginx/templates/default.conf.template
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user