Nginx config

来自WHY42
Riguz留言 | 贡献2024年12月7日 (六) 02:36的版本 →‎Serve React

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