Nginx Reverse Proxy basic Configuration

Source: Internet
Author: User
Tags tomcat nginx reverse proxy
#user nobody;

Worker_processes 1;
#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_sen

    T "$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;
    Upstream tomcat{server 127.0.0.1:8080;
        } server {Listen 80;

        server_name 127.0.0.1;

        #charset Utf-8;

	#access_log Logs/host.access.log Main;
      Root e:\\03.middleware\\tomcat6.0\\webapps\\;
          location/tms-webapp/{Proxy_pass http://tomcat; 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;
      } location/logo {root d:\\picture/;
	} location/{rewrite ^/(. *) $ http://127.0.0.1/tms-webapp break;

        } #error_page 404/404.html; # REDIRECT Server error pages to the static page/50x.html # Error_page 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; #}} # Another virtual host using mix of ip-, name-, and port-based configuration # #server {# l
    Isten 8000;
    # Listen somename:8080; # server_name Somename alias Another.alias;
    # location/{# root HTML;
    # index index.html index.htm;
    #} #} # HTTPS Server # #server {# listen 443;

    # server_name localhost;
    # SSL on;
    # ssl_certificate Cert.pem;

    # Ssl_certificate_key Cert.key;

    # ssl_session_timeout 5m;
    # ssl_protocols SSLv2 SSLv3 TLSv1; # ssl_ciphers high:!anull:!
    MD5;

    # ssl_prefer_server_ciphers on;
    # location/{# root HTML;
    # index index.html index.htm;
 #    }
    #}

}


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.