nginx配置文件

2022/2/1 7:30:48

本文主要是介绍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配置文件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程