使用nginx反向 Proxytomcat服務
本次的實驗需要nginx服務和tomcat服務{具體就不講怎麼安裝}
環境:
1.centos6.5
2.iptables和selinux關閉
3.服務全部啟動
思路:通過nginx的設定檔中指定對應的服務。
nginx.conf配置內容:
#user nobody;worker_processes 2;#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 80;# server_name shinyv.cc.com;#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;#}# } upstream tomcat_web { server 192.168.140.19:8080; } server { listen 80; server_name cui.youfang.com; access_log /var/log/nginx/cui.youfang.access.log; error_log /var/log/nginx/cui.youfang.error.log; location / { proxy_set_header Host $host; proxy_set_header Set-Cookie $http_cookie; proxy_set_header X-Real-Ip $remote_addr; proxy_set_header X-Forwarded-For $remote_addr; proxy_pass http://tomcat_web; } } # 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;# }#}}
改完配置需要對nginx進行重啟
應為是基於網域名稱進行綁定的所以需要綁定hosts:
之後在本機PC上的hosts中綁定:
這樣就完成了;現在可以進行測試啦!
測試:
是否可以用IP訪問
用網域名稱直接開啟
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
').text(i)); }; $numbering.fadeIn(1700); }); });
以上就介紹了使用nginx反向 Proxytomcat服務,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。