Use nginx reverse proxy tomcat service
This experiment requires nginx service and tomcat service {I won’t talk about how to install them specifically}
Environment:
1.centos6.5
2.iptables and selinux are closed
3. Start all services
Idea: Specify the corresponding services in the nginx configuration file.
nginx.conf configuration content:
<code><span>#user nobody;</span> worker_processes <span>2</span><span>;</span><span>#error_log logs/error.log;</span><span>#error_log logs/error.log notice;</span><span>#error_log logs/error.log info;</span><span>#pid logs/nginx.pid;</span>events { worker_connections <span>1024</span><span>;</span> } http { include mime<span>.types</span><span>;</span> default_type application/octet-stream<span>;</span><span>#log_format main '$remote_addr - $remote_user [$time_local] "$request" '</span><span># '$status $body_bytes_sent "$http_referer" '</span><span># '"$http_user_agent" "$http_x_forwarded_for"';</span><span>#access_log logs/access.log main;</span> sendfile on<span>;</span><span>#tcp_nopush on;</span><span>#keepalive_timeout 0;</span> keepalive_timeout <span>65</span><span>;</span><span>#gzip on;</span><span># server {</span><span># listen 80;</span><span># server_name shinyv.cc.com;</span><span>#charset koi8-r;</span><span>#access_log logs/host.access.log main;</span><span># location / {</span><span># root html;</span><span># index index.html index.htm;</span><span># }</span><span>#error_page 404 /404.html;</span><span># redirect server error pages to the static page /50x.html</span><span>#</span><span># error_page 500 502 503 504 /50x.html;</span><span># location = /50x.html {</span><span># root html;</span><span># }</span><span># proxy the PHP scripts to Apache listening on 127.0.0.1:80</span><span>#</span><span>#location ~ \.php$ {</span><span># proxy_pass http://127.0.0.1;</span><span>#}</span><span># pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000</span><span>#</span><span>#location ~ \.php$ {</span><span># root html;</span><span># fastcgi_pass 127.0.0.1:9000;</span><span># fastcgi_index index.php;</span><span># fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;</span><span># include fastcgi_params;</span><span>#}</span><span># deny access to .htaccess files, if Apache's document root</span><span># concurs with nginx's one</span><span>#</span><span>#location ~ /\.ht {</span><span># deny all;</span><span>#}</span><span># }</span> upstream tomcat_web { server <span>192.168</span><span>.140</span><span>.19</span>:<span>8080</span><span>;</span> } server { listen <span>80</span><span>;</span> server_name cui<span>.youfang</span><span>.com</span><span>;</span> access_log /var/log/nginx/cui<span>.youfang</span><span>.access</span><span>.log</span><span>;</span> error_log /var/log/nginx/cui<span>.youfang</span><span>.error</span><span>.log</span><span>;</span> location / { proxy_set_header Host $host<span>;</span> proxy_set_header <span>Set</span>-Cookie $http_cookie<span>;</span> proxy_set_header <span>X</span>-Real-Ip $remote_addr<span>;</span> proxy_set_header <span>X</span>-Forwarded-For $remote_addr<span>;</span> proxy_pass http://tomcat_web<span>; </span> } } <span># another virtual host using mix of IP-, name-, and port-based configuration</span><span>#</span><span>#server {</span><span># listen 8000;</span><span># listen somename:8080;</span><span># server_name somename alias another.alias;</span><span># location / {</span><span># root html;</span><span># index index.html index.htm;</span><span># }</span><span>#}</span><span># HTTPS server</span><span>#</span><span>#server {</span><span># listen 443 ssl;</span><span># server_name localhost;</span><span># ssl_certificate cert.pem;</span><span># ssl_certificate_key cert.key;</span><span># ssl_session_cache shared:SSL:1m;</span><span># ssl_session_timeout 5m;</span><span># ssl_ciphers HIGH:!aNULL:!MD5;</span><span># ssl_prefer_server_ciphers on;</span><span># location / {</span><span># root html;</span><span># index index.html index.htm;</span><span># }</span><span>#}</span>} </code>
After changing the configuration, nginx needs to be restarted
Because it is bound based on the domain name, you need to bind hosts:
Then bind it in the hosts on the local PC:
This is done; now you can test!
Test:
Whether it can be accessed by IP
Open directly with domain name
The above introduces the use of nginx reverse proxy tomcat service, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.