使用nginx反向代理tomcat服务
程序员文章站
2022-05-06 18:05:44
...
使用nginx反向代理tomcat服务
本次的实验需要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访问
用域名直接打开
以上就介绍了使用nginx反向代理tomcat服务,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: PHP转义符问题
下一篇: php 中的 curl 函数