67 lines
1.4 KiB
Text
67 lines
1.4 KiB
Text
|
user www-data www-data;
|
||
|
worker_processes 1;
|
||
|
|
||
|
error_log /var/log/nginx/error.log warn;
|
||
|
pid /var/run/nginx.pid;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
|
||
|
http {
|
||
|
charset utf-8;
|
||
|
|
||
|
include /etc/nginx/mime.types;
|
||
|
default_type application/octet-stream;
|
||
|
|
||
|
set_real_ip_from {{ item.subnet_gateway_ip }};
|
||
|
log_format main '$http_x_real_ip - $remote_user [$time_local] "$request" '
|
||
|
'$status $body_bytes_sent "$http_referer" '
|
||
|
'"$http_user_agent" "$http_x_forwarded_for"';
|
||
|
|
||
|
access_log /var/log/nginx/access.log main;
|
||
|
|
||
|
##
|
||
|
# Basic Settings
|
||
|
##
|
||
|
|
||
|
sendfile on;
|
||
|
tcp_nopush on;
|
||
|
tcp_nodelay on;
|
||
|
keepalive_timeout 15s;
|
||
|
types_hash_max_size 2048;
|
||
|
server_tokens off;
|
||
|
client_max_body_size 10M;
|
||
|
client_body_timeout 60;
|
||
|
# server_names_hash_bucket_size 64;
|
||
|
server_name_in_redirect off;
|
||
|
|
||
|
|
||
|
##
|
||
|
# Gzip Settings
|
||
|
##
|
||
|
|
||
|
gzip on;
|
||
|
gzip_disable "msie6";
|
||
|
|
||
|
gzip_vary on;
|
||
|
gzip_proxied any;
|
||
|
gzip_comp_level 6;
|
||
|
gzip_buffers 16 8k;
|
||
|
gzip_http_version 1.1;
|
||
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
||
|
|
||
|
|
||
|
include /etc/nginx/conf.d/*.conf;
|
||
|
|
||
|
|
||
|
server {
|
||
|
listen 80 default;
|
||
|
listen [::]:80 default;
|
||
|
server_name {{ item.url }} www.{{ item.url }};
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://{{ item.subnet_site_ip }}:3000;
|
||
|
}
|
||
|
}
|