Update to current Perl
This commit is contained in:
parent
ebd46d86d4
commit
3cc88f8150
57 changed files with 11638 additions and 665 deletions
19
share/nginx-default-server
Normal file
19
share/nginx-default-server
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
server {
|
||||
listen 8080 default_server;
|
||||
access_log /dev/stdout main;
|
||||
index index.htm index.html;
|
||||
root /data/WebGUI/www;
|
||||
|
||||
location / {
|
||||
proxy_pass http://webgui-upstream;
|
||||
}
|
||||
|
||||
location /extras/ {
|
||||
add_header Cache-Control public;
|
||||
expires 24h;
|
||||
add_header Access-Control-Allow-Origin *;
|
||||
}
|
||||
|
||||
location /uploads/filepump { expires max; }
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue