-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnginx.conf
More file actions
23 lines (16 loc) · 1.49 KB
/
nginx.conf
File metadata and controls
23 lines (16 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#Nginx default.conf
#/etc/nginx/conf.d
server {
listen 8080;
server_name localhost;
# means no limit
client_max_body_size 0;
proxy_read_timeout 180s;
include /etc/nginx/mime.types;
location /templatebuilder {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
error_page 404 /404.html;
}