11 lines
125 B
Nginx Configuration File
11 lines
125 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
gzip_static on;
|
|
|
|
client_max_body_size 5G;
|
|
|
|
location / {
|
|
root /www/page;
|
|
}
|
|
}
|