CentOS 搭建 nginx + tomcat

來源:互聯網
上載者:User

標籤:

安裝nginx
yum install nginx 

 

修改 nginx.conf, (/etc/nginx/nginx.conf), 網上有人做人所有設定項目的詳解。
#nu For more information on configuration, see:#   * Official English Documentation: http://nginx.org/en/docs/#   * Official Russian Documentation: http://nginx.org/ru/docs/user              nginx;worker_processes  8;error_log  /var/log/nginx/info.log;#notic_log  /var/log/nginx/notice.log  notice;#info_log  /var/log/nginx/info.log  info;pid        /var/run/nginx.pid;worker_rlimit_nofile 51200;events {    use epoll;    worker_connections  1024;}http {    include       /etc/nginx/mime.types;    default_type  application/octet-stream;    server_names_hash_bucket_size 128;    client_header_buffer_size 32k;    large_client_header_buffers 4 32k;    client_max_body_size 8m;    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  /var/log/nginx/access.log  main;    sendfile        on;    tcp_nopush     on;    #keepalive_timeout  0;    keepalive_timeout  65;    gzip  on;       upstream backend{     server localhost:8080;   }   server{     listen 80;     server_name www.ppmingpian.cn;          location / {      root /home/nginx/ppmingpian;      index index.htm home.htm;      proxy_redirect off;      proxy_set_header Host $host;      proxy_set_header  X-Real-IP  $remote_addr;      proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;      proxy_pass  http://backend;     }     log_format  access  "$remote_addr - $remote_user [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $http_x_forwarded_for";     access_log  /var/log/access.log  access;   }    # Load config files from the /etc/nginx/conf.d directory    # The default server is in conf.d/default.conf    include /etc/nginx/conf.d/*.conf;}

 

啟動nginx
ngnix

 

關掉ngnixkill -HUP `cat /var/run/nginx.pid`

 

CentOS 搭建 nginx + tomcat

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.