Port 80 response policy Nginx reverse proxy For WIN2003 super fool configuration

  • 2020-05-06 12:12:06
  • OfStack

Latest version under Win: nginx-0.8.31
Download address: http: / / sysoev ru nginx/nginx - 0.8.31. zip
After downloading, unzip to any location, then modify the nginx.conf and add proxy.conf after launching Nginx.exe!

proxy.conf content:

 
proxy_redirect off; 
proxy_set_header Host $host; 
proxy_set_header X-Real-IP $remote_addr; 
proxy_set_header REMOTE-HOST $remote_addr; 
proxy_set_header X-Forwarded-For $remote_addr; 
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 

client_max_body_size 10m; 
client_body_buffer_size 128k; 

# client_body_temp_path /var/nginx/client_body_temp; 

proxy_connect_timeout 90; 
proxy_send_timeout 90; 
proxy_read_timeout 90; 
#proxy_send_lowat 12000; 

proxy_buffer_size 32k; 
proxy_buffers 4 32k; 
proxy_busy_buffers_size 64k; 
proxy_temp_file_write_size 64k; 

# proxy_temp_path /var/nginx/proxy_temp; 

proxy_ignore_client_abort on; 

proxy_next_upstream error timeout invalid_header http_500 http_503 http_404; 

proxy_max_temp_file_size 128m; 

nginx.conf content:
 
#user nobody; 
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; 
include proxy.conf; 
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 80; 
server_name localhost; 

#charset koi8-r; 

#access_log logs/host.access.log main; 

location / { 
root html; 
index index.html index.htm; 
} 

#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; 
} 

# 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 
# 
#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; 
# server_name localhost; 

# ssl on; 
# ssl_certificate cert.pem; 
# ssl_certificate_key cert.key; 

# ssl_session_timeout 5m; 

# ssl_protocols SSLv2 SSLv3 TLSv1; 
# ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP; 
# ssl_prefer_server_ciphers on; 

# location / { 
# root html; 
# index index.html index.htm; 
# } 
#} 
#  Don't worry about anything else , Just put it in the right place , The main one is the bottom row , Just fill it out ! One station in a row , One station to one port , Do not duplicate the port, or the station in your IIS will not start!  
server { listen 80; server_name 1.jb51.net; location / { proxy_pass http://208.28.188.249:81; }} 
server { listen 80; server_name 2.jb51.net; location / { proxy_pass http://208.28.188.249:82; }} 
} 

This is on the proxy server configuration, is to look for a no seal 80 IP or VPS can rent a abroad, otherwise you will and you the machine which are open to the 80 conflict, and then through the proxy server to jump to your sealing machine, 80 letters, 80 on the site of the machine to add empty host port is 81, here is literally fill in 81, computer includes 655535 port Settings you want, so that seal in 80 also useless!

I will write a specific foolproof procedure:
1, the above software download unpack to your 80 server configuration, it is best not to have a website, or it will be your original website with 80 conflict;
2, your domain name to the above did not block 80 IP, and then go to the machine you block 80 to the original site to add an empty host port is 81, such as http://192.168.0.11:81 can access to your website can;
3. Nginx.exe will not take effect until the configuration file is started again after the task is finished in the task manager. Remember to end both Nginx.exe processes, or it won't work.
4, 1. Es47en51.net here is replaced by your domain name, multiple domain names with space separate, no restrictions, a site line, not multiple sites in a line;
5. Open Nginx.exe, you can directly double-click, it will flash, as long as there are two Nginx.exe in the process of the task manager is normal operation, otherwise, the configuration file error did not start;
This error is that your proxy server cannot access http://192.168.0.11:81 this address, you can try, if you can not server may be related to your firewall or policy;


Related articles: