码迷,mamicode.com
首页 > 系统相关 > 详细

linux系统下的nginx配置文件

时间:2021-01-13 10:45:25      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:live   try_files   location   nginx   include   tcp   out   files   efault   

user  root;

worker_processes 1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    #use epoll;
    worker_connections 65535;
}


http {

    #include       /etc/nginx/mime.types;

    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  /var/log/nginx/access.log  main;

    sendfile        on;

    tcp_nopush     on;

    keepalive_timeout  65;

    gzip  on;

    #include /etc/nginx/conf.d/*.conf;

    #client_max_body_size 2048m;

    #client_body_buffer_size  1024m;   

    #client_header_buffer_size 1024m;

       
    server {

      listen  80;

      server_name  192.168.3.220;

      location / {

        root  /opt/mmfw/dist;

        try_files $uri $uri/ /index.html;

        index  index.html index.htm;

        
      }

      location /prod-api/ {

       proxy_set_header Host $http_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;

        proxy_pass  http://192.168.3.220:8081/;
      
        proxy_connect_timeout 120;

      }

      error_page 500 502 503 504 /50x.html;

      location = /50x.html {
      root html;
      }

    }
    

}

 

linux系统下的nginx配置文件

标签:live   try_files   location   nginx   include   tcp   out   files   efault   

原文地址:https://www.cnblogs.com/flafly/p/14260880.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!