当前位置:Gxlcms > PHP教程 > 使用nginx反向代理tomcat服务

使用nginx反向代理tomcat服务

时间:2021-07-01 10:21:17 帮助过:3人阅读

使用nginx反向代理tomcat服务
本次的实验需要nginx服务和tomcat服务{具体就不讲怎么安装}

环境:
1.centos6.5
2.iptables和selinux关闭
3.服务全部启动
使用nginx反向代理tomcat服务

思路:通过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:
使用nginx反向代理tomcat服务

之后在本机PC上的hosts中绑定:
使用nginx反向代理tomcat服务

这样就完成了;现在可以进行测试啦!

测试:

是否可以用IP访问
使用nginx反向代理tomcat服务

用域名直接打开
使用nginx反向代理tomcat服务

').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反向代理tomcat服务,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

  • 人气教程排行