使用nginx反向 Proxytomcat服務

來源:互聯網
上載者:User
使用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教程有興趣的朋友有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.