使用nginx反向代理tomcat服务
本次的实验需要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 ').text(i)); }; $numbering.fadein(1700); }); }); 以上就介绍了使用nginx反向代理tomcat服务,包括了方面的内容,希望对php教程有兴趣的朋友有所帮助。