65 lines
2.0 KiB
Plaintext
65 lines
2.0 KiB
Plaintext
##
|
|
# You should look at the following URL's in order to grasp a solid understanding
|
|
# of Nginx configuration files in order to fully unleash the power of Nginx.
|
|
# https://www.nginx.com/resources/wiki/start/
|
|
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
|
|
# https://wiki.debian.org/Nginx/DirectoryStructure
|
|
#
|
|
# In most cases, administrators will remove this file from sites-enabled/ and
|
|
# leave it as reference inside of sites-available where it will continue to be
|
|
# updated by the nginx packaging team.
|
|
#
|
|
# This file will automatically load configuration files provided by other
|
|
# applications, such as Drupal or Wordpress. These applications will be made
|
|
# available underneath a path with that package name, such as /drupal8.
|
|
#
|
|
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
|
|
##
|
|
|
|
# Default server configuration
|
|
#
|
|
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
client_max_body_size 100M;
|
|
|
|
root /var/www/html;
|
|
index index.html;
|
|
|
|
# 文件直接访问路径 - ^~ 表示前缀匹配且优先级高于正则
|
|
location ^~ /files/ {
|
|
alias /opt/deploy/uploads/;
|
|
add_header Cache-Control "public, max-age=604800";
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
# 静态资源
|
|
location ~* \.(js|css|svg|png|jpg|woff|ttf)$ {
|
|
expires 7d;
|
|
}
|
|
|
|
# 前端路由
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
# API代理 - SSE流式响应配置
|
|
location /api/ {
|
|
proxy_pass http://127.0.0.1:8080;
|
|
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_set_header X-Forwarded-Proto $scheme;
|
|
|
|
# SSE流式响应必需配置
|
|
proxy_buffering off;
|
|
proxy_cache off;
|
|
proxy_connect_timeout 300s;
|
|
proxy_send_timeout 300s;
|
|
proxy_read_timeout 300s;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Connection '';
|
|
}
|
|
}
|