Skip to content

Instantly share code, notes, and snippets.

@tom-field
Last active July 31, 2018 09:28
Show Gist options
  • Save tom-field/b7a5aa81fabd265065eaef824fde10bc to your computer and use it in GitHub Desktop.
Save tom-field/b7a5aa81fabd265065eaef824fde10bc to your computer and use it in GitHub Desktop.
user root;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 8083;
server_name localhost;
location / {
root html/backend;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location ~* \.(gif|jpg|jpeg|png|css|js|ico)$ {
root html/backend;
}
}
server {
listen 80;
server_name localhost;
client_max_body_size 2000m;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location /nemo {
proxy_pass http://127.0.0.1:8087/nemo;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_cache_bypass $http_upgrade;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
server {
listen 8091;
server_name 112.64.159.200;
client_max_body_size 2000m;
#charset koi8-r;
#access_log logs/host.access.log main;
root /home/hk/html;
location / {
root /home/hk/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location /hk {
proxy_pass http://localhost:8093/hk;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_cache_bypass $http_upgrade;
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
server {
listen 8092;
server_name 112.64.159.200;
client_max_body_size 2000m;
#charset koi8-r;
#access_log logs/host.access.log main;
root /home/bb/html;
location / {
root /home/bb/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location /bb {
proxy_pass http://localhost:8094/bb;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_cache_bypass $http_upgrade;
}
location /bbPro {
proxy_pass http://localhost:8900/bbPro;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_cache_bypass $http_upgrade;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
#location ~ /\.ht {
# deny all;
#}
}
# server {
# listen 8990;
# server_name 112.64.159.200;
# client_max_body_size 2000m;
#charset koi8-r;
#access_log logs/host.access.log main;
# root /home/bbPro/html;
# location / {
# root /home/bbPro/html;
# index index.html index.htm;
# try_files $uri $uri/ /index.html;
# }
# location /bbPro {
# proxy_pass http://localhost:8900/bbPro;
# proxy_http_version 1.1;
# proxy_set_header Upgrade $http_upgrade;
# proxy_set_header Connection 'upgrade';
# proxy_set_header Host $host;
# proxy_set_header X-Real-IP $remote_addr;
# proxy_cache_bypass $http_upgrade;
# }
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
# error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# root html;
# }
#location ~ /\.ht {
# deny all;
#}
#}
server {
listen 8191;
server_name 192.168.112.45;
client_max_body_size 2000m;
#charset koi8-r;
#access_log logs/host.access.log main;
root /home/hkdev/html;
location / {
root /home/hkdev/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location /hkDev {
# proxy_pass http://localhost:8193/hkDev;
proxy_pass http://192.168.10.215:8093/hkDev;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_cache_bypass $http_upgrade;
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
server {
listen 8192;
server_name 192.168.112.45;
client_max_body_size 2000m;
#charset koi8-r;
#access_log logs/host.access.log main;
root /home/bbdev/html;
location / {
root /home/bbdev/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location /bbDev {
#proxy_pass http://192.168.10.125:8094/bbDev;
proxy_pass http://192.168.10.215:8094/bbDev;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_cache_bypass $http_upgrade;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment