博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx基本配置
阅读量:6086 次
发布时间:2019-06-20

本文共 2648 字,大约阅读时间需要 8 分钟。

hot3.png

#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_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;

   upstream local_tomcat{

      ip_hash;

      server 127.0.0.1:8081;

      server 127.0.0.1:8082;

   }

server {

listen       8081;

       charset utf-8;

       access_log  logs/host.access.log.8081 main;

        location / {

                        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://localhost:8080;

       }

}

    server {

                 listen       8082;

                charset utf-8;

                access_log  logs/host.access.log.8081 main;

                location / {

                        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://localhost:8083;

                }

        }

    server {

        listen       80;

        charset utf-8;

        access_log  logs/host.access.log.80;

        location / {

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://local_tomcat;

        }

        #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;

        #}

    }

    # 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;

    #    }

    #}

}

转载于:https://my.oschina.net/vincentzhao/blog/501267

你可能感兴趣的文章
<context-param>与<init-param>
查看>>
Hive Streaming 追加 ORC 文件
查看>>
禁用触摸点击事件
查看>>
spring data jpa 创建方法名进行简单查询
查看>>
Hadoop HDFS编程 API入门系列之RPC版本1(八)
查看>>
透视校正插值
查看>>
oracle中如何指定表字段自增
查看>>
Mysql中的算术运算符详解
查看>>
ubuntu svn
查看>>
Hard模式题目
查看>>
那是梦吗
查看>>
调试 ASP 程序脚本
查看>>
第十四篇:获取系统数据文件信息
查看>>
为什么有些语言可以被反编译?而有的不能?
查看>>
JVM 调优
查看>>
最大似然估计
查看>>
如何使用Total Recorder录制软件发出的声音
查看>>
把异步架构延伸到客户端
查看>>
ORACLE数据库表解锁record is locked by another user
查看>>
ImportError: libmysqlclient_r.so.16: cannot open shared object file: No such file or directory
查看>>