Install Nginx and centosng.pdf in yum in CentOS

Source: Internet
Author: User
Tags nginx reverse proxy

Install Nginx and centosng.pdf in yum in CentOS
Install Nginx

# View related information: yum info nginxyum info httpd # Remove httpd, that is, Apacheyum remove httpd-y # install nginxyum install nginx-y # Set nginx to automatically start chkconfig nginx on # view the service self-start status chkconfig # start nginx service nginx start # view the port listening status netstat -ntl # Now you can try it # example: http: // 192.168.1.111: 8080, etc. # If you cannot access the service, ping it. # or check the status of the iptables firewall. service iptables status # disable the firewall and simply stop the service iptables.

If you do not have the permission to perform these operations, you may need to usesudoPermission

Configure Nginx reverse proxy

/Etc/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; }

Configure the load:/Etc/nginx/upstream. conf

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

Site configuration file:/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;    }}
Restart service
service nginx stopservice nginx start

Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.