nginxconfig.io/public/templates/conf/nginx.conf.html

44 lines
1.2 KiB
HTML
Raw Normal View History

2018-01-07 15:30:12 +00:00
user {{ data.user }};
pid {{ data.pid}};
worker_processes {{ data.worker_processes }};
worker_rlimit_nofile 409600;
events {
worker_connections 4096;
multi_accept on;
}
http {
charset utf-8;
sendfile on;
tcp_nopush on;
2018-02-18 13:02:11 +00:00
tcp_nodelay on;<!--
✘ serverTokens --><span ng-if="!isServerTokens()">
server_tokens off;</span><!--
2018-01-07 15:30:12 +00:00
2018-02-18 13:02:11 +00:00
✘ logNotFound --><span ng-if="!isLogNotFound()">
log_not_found off;</span>
types_hash_max_size 2048;
2018-01-23 05:41:31 +00:00
client_max_body_size {{ data.client_max_body_size }}M;
2018-01-07 15:30:12 +00:00
# mime
include mime.types;
default_type application/octet-stream;
2018-02-18 13:02:11 +00:00
# logging
access_log {{ isAccessLog() ? data.access_log : 'off' }};
2018-01-07 15:30:12 +00:00
error_log {{ data.error_log }} warn;<span ng-if="data.limit_req">
# limits
limit_req_log_level warn;
limit_req_zone $binary_remote_addr zone=login:10m rate=10r/m;</span>
2018-02-18 13:02:11 +00:00
# load configs
include /etc/nginx/conf.d/*.conf;<span ng-if="data.file_structure === 'modularized'">
2018-01-07 15:30:12 +00:00
include /etc/nginx/sites-enabled/*;</span><span ng-if="data.file_structure === 'unified'">
2018-02-18 13:02:11 +00:00
# {{ !data.non_www ? 'www.' : '' }}{{ domain() }}
<ng-include ng-include-tabs="1" src="'templates/conf/example.com.conf.html'" sonload="refreshHighlighting()"></ng-include></span>
2018-01-08 01:49:44 +00:00
}