次のようなサブフォルダー構成でアプリケーション Mattermost を実行したい
https://www.example.com/mattermost/
location /mattermost/ {
gzip off;
proxy_set_header X-Forwarded-Ssl on;
client_max_body_size 50M;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_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;
proxy_set_header X-Frame-Options SAMEORIGIN;
proxy_pass http://localhost:8065/;
}
この構成では、正しいアプリケーションに渡されますが、アプリケーションはサブフォルダーを認識しません。サーバーしようとします
https://www.example.com/mattermost/style.cssの代わりにhttps://www.example.com/static/style.cssを使用すると、404 エラーが発生します。
サブフォルダもnginxでリバースプロキシに渡すにはどうすればよいですか?