CentOS下yum安裝 Nginx

來源:互聯網
上載者:User

標籤:centos   yum   安裝   nginx   

安裝Nginx
# 查看相關資訊yum info nginxyum info httpd# 移除 httpd,也就是 Apacheyum remove httpd -y#  安裝 nginxyum install nginx -y#設定 nginx 自啟動chkconfig nginx on# 查看服務自啟動情況chkconfig# 啟動nginx服務service nginx start#  查看連接埠監聽狀態netstat -ntl# 此時你可以訪問試試了# 例如: http://192.168.1.111:8080 等# 如果訪問不了,請 ping 一下試試# 或者查看 iptables 防火牆狀態service iptables status# 關閉防火牆,簡單粗暴的service iptables stop

如果你沒有許可權執行這些操作,你可能需要使用 sudo 許可權

配置Nginx反向 Proxy

/etc/nginx/nginx.conf

user              nginx;worker_processes  1;error_log  /var/log/nginx/error.log;pid        /var/run/nginx.pid;events {    use epoll;      worker_connections  1024;}http {    include       /etc/nginx/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  /var/log/nginx/access.log  main;    sendfile        on;    #tcp_nopush     on;    #keepalive_timeout  0;    keepalive_timeout  65;    gzip  on;    # 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;    include     upstream.conf;    include     cncounter.com.conf; }

做負載的配置: /etc/nginx/upstream.conf

upstream www.cncounter.com {    server 127.0.0.1:8080;}

網站設定檔: /etc/nginx/cncounter.com.conf

server{    listen         80;    server_name    www.cncounter.com;    index index.jsp;    root    /usr/local/cncounter_webapp/cncounter/;    location ~ ^/NginxStatus/ {    stub_status on;    access_log off;    }    location / {         root    /usr/local/cncounter_webapp/cncounter/;         proxy_redirect off ;         proxy_set_header Host $host;         proxy_set_header X-Real-IP $remote_addr;         proxy_set_header REMOTE-HOST $remote_addr;         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;         client_max_body_size 50m;         client_body_buffer_size 256k;         proxy_connect_timeout 30;         proxy_send_timeout 30;         proxy_read_timeout 60;         proxy_buffer_size 256k;         proxy_buffers 4 256k;         proxy_busy_buffers_size 256k;         proxy_temp_file_write_size 256k;         proxy_next_upstream error timeout invalid_header http_500 http_503 http_404;         proxy_max_temp_file_size 128m;         proxy_pass    http://www.cncounter.com;    }}
重啟服務
service nginx stopservice nginx start

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

CentOS下yum安裝 Nginx

相關文章

聯繫我們

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