Nginx config:修订间差异

来自WHY42
Riguz留言 | 贡献
标签2017版源代码编辑
Riguz留言 | 贡献
标签2017版源代码编辑
 
第23行: 第23行:
server {
server {
     index index.html index.htm index.nginx-debian.html;
     index index.html index.htm index.nginx-debian.html;
   
     server_name yai.ink;
     server_name yai.ink;
     location / {
     location / {
         proxy_pass http://localhost:8000;
         proxy_pass http://localhost:8000;

2024年12月7日 (六) 03:21的最新版本

Configuration

Serve React

Note:

  • Solve browser route 404:[1]
server {
    root /var/www/html;
    server_name yai.ink;

    location / {
        try_files $uri $uri/ /index.html;
    }
}

Reverse proxy

Note: be careful that the backend should also use correct config.

server {
    index index.html index.htm index.nginx-debian.html;
    server_name yai.ink;
    location / {
        proxy_pass http://localhost:8000;
    }
}