You've already forked nginx-install
initial commit
This commit is contained in:
89
cfg-apps/focalboard.80.conf
Normal file
89
cfg-apps/focalboard.80.conf
Normal file
@@ -0,0 +1,89 @@
|
||||
##### Define upstream start ####################################################
|
||||
upstream focalboard {
|
||||
server localhost:8000;
|
||||
keepalive 32;
|
||||
}
|
||||
##### Define upstream stop #####################################################
|
||||
|
||||
##### Process http start #######################################################
|
||||
server {
|
||||
listen 80;
|
||||
server_name DOMAIN;
|
||||
server_tokens off;
|
||||
|
||||
##### Optional include custom Error pages start ############################
|
||||
include /etc/nginx/nginxsnippets/custom-errors.conf;
|
||||
##### Optional include custom Error pages stop #############################
|
||||
|
||||
##### Optional disable gzip start ##########################################
|
||||
# gzip off;
|
||||
##### Optional disable gzip stop ###########################################
|
||||
|
||||
##### Optional disable access log start ####################################
|
||||
# access_log off;
|
||||
##### Optional disable access log stop #####################################
|
||||
|
||||
##### Block Bad referers and bad bots start ################################
|
||||
if ($bad_referer) { return 444; }
|
||||
if ($bad_user_agent) { return 444; }
|
||||
##### Block Bad referers and bad bots stop #################################
|
||||
|
||||
##### Optional stuff start #################################################
|
||||
# include /etc/nginx/nginxsnippets/block-engines.conf;
|
||||
include /etc/nginx/nginxsnippets/log-exclude.conf;
|
||||
include /etc/nginx/nginxsnippets/block-htaccess.conf;
|
||||
include /etc/nginx/nginxsnippets/block-file-access.conf;
|
||||
##### Optional stuff stop ##################################################
|
||||
|
||||
##### Enable fastcgi cache start ###########################################
|
||||
set $skip_cache 0;
|
||||
##### Enable fastcgi cache stop ############################################
|
||||
|
||||
##### Process content start ################################################
|
||||
location ~ /ws/* {
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
client_max_body_size 50M;
|
||||
proxy_set_header Host $http_host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-Frame-Options SAMEORIGIN;
|
||||
proxy_buffers 256 16k;
|
||||
proxy_buffer_size 16k;
|
||||
client_body_timeout 60;
|
||||
send_timeout 300;
|
||||
lingering_timeout 5;
|
||||
proxy_connect_timeout 1d;
|
||||
proxy_send_timeout 1d;
|
||||
proxy_read_timeout 1d;
|
||||
proxy_pass http://focalboard;
|
||||
}
|
||||
|
||||
location / {
|
||||
client_max_body_size 50M;
|
||||
proxy_set_header Connection "";
|
||||
proxy_set_header Host $http_host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-Frame-Options SAMEORIGIN;
|
||||
proxy_buffers 256 16k;
|
||||
proxy_buffer_size 16k;
|
||||
proxy_read_timeout 600s;
|
||||
proxy_cache_revalidate on;
|
||||
proxy_cache_min_uses 2;
|
||||
proxy_cache_use_stale timeout;
|
||||
proxy_cache_lock on;
|
||||
proxy_http_version 1.1;
|
||||
proxy_pass http://focalboard;
|
||||
}
|
||||
##### Process content stop #################################################
|
||||
|
||||
##### Cache js css static content and open files start #####################
|
||||
include /etc/nginx/nginxsnippets/cache-open-files.conf;
|
||||
include /etc/nginx/nginxsnippets/cache-statics.conf;
|
||||
include /etc/nginx/nginxsnippets/cache-js-css.conf;
|
||||
##### Cache js css static content and open files stop ######################
|
||||
}
|
||||
##### Process http stop #######################################################
|
||||
Reference in New Issue
Block a user