nginx配置文件

Posted coder小白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx配置文件相关的知识,希望对你有一定的参考价值。

user root;

worker_processes auto;

#error_log /var/log/nginx/error.log notice;
#pid /var/run/nginx.pid;


events
  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 logs/access.log main;

  sendfile on;
  #tcp_nopush on;

  keepalive_timeout 65;

  gzip on;
  gzip_min_length 1k;
  gzip_comp_level 6;
  gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/xml text/javascript application/json;
  gzip_vary on;
  gzip_buffers 4 16k;
  gzip_http_version 1.1;

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

  server
    listen 80;
    server_name 82.156.214.17;

    location ~/
      root /home/image;
    

    location ~ .*\\.(js|css|ico|png|jpg|eot|svg|ttf|woff|html)
        root /etc/dist/;
        expires 30d;
     

    location /authserve/
      proxy_pass http://82.156.214.17:8080;
      proxy_set_header X-Forwarded-Host $host;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    
  

 

以上是关于nginx配置文件的主要内容,如果未能解决你的问题,请参考以下文章

Nginx 配置文件

nginx配置文件详解

linux 上修改了nginx.conf 怎么重新加载配置文件生效

Nginx配置文件说明

[后端]nginx配置文件详解

nginx学习:配置文件及其组成