Files
parcel-example-neko/nginx/templates/default.conf.template
2022-12-16 09:53:19 +07:00

18 lines
293 B
Plaintext

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;
}
}