mirror of
https://github.com/Dannecron/parcel-example-neko.git
synced 2025-12-25 23:32:36 +03:00
18 lines
293 B
Plaintext
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;
|
|
}
|
|
}
|