parent
e6541acd07
commit
36d5b9b5be
@ -1,20 +1,22 @@ |
||||
server { |
||||
listen 80; |
||||
sendfile on; |
||||
default_type application/octet-stream; |
||||
worker_processes auto; |
||||
|
||||
gzip on; |
||||
gzip_http_version 1.1; |
||||
gzip_disable "MSIE [1-6]\."; |
||||
gzip_min_length 256; |
||||
gzip_vary on; |
||||
gzip_proxied expired no-cache no-store private auth; |
||||
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript; |
||||
gzip_comp_level 9; |
||||
events { worker_connections 1024; } |
||||
|
||||
http { |
||||
|
||||
server { |
||||
listen 4200; |
||||
server_name digitepa_front; |
||||
|
||||
#ssl_certificate /etc/nginx/ssl/www.epa.apside.com.crt; |
||||
#ssl_certificate_key /etc/nginx/ssl/www.epa.apside.com.key; |
||||
|
||||
|
||||
location / { |
||||
root /usr/share/nginx/html/EPAClient; |
||||
try_files $uri $uri/ admin/index.html; |
||||
} |
||||
} |
||||
|
||||
root /usr/share/nginx/html; |
||||
|
||||
location / { |
||||
try_files $uri $uri/ /index.html =404; |
||||
} |
||||
} |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue