0

次のようなサブフォルダー構成でアプリケーション 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でリバースプロキシに渡すにはどうすればよいですか?

4

1 に答える 1

0

動かしてみたいアプリは「Mattermost」でした。今確認できたように、バージョンではサブフォルダーとしての使用はできません

Mattermost チーム エディション バージョン: 3.0.0 (3.0.3)

さらに詳しい情報:

http://forum.mattermost.org/t/blank-page-when-installing-mattermost-with-nginx-proxy-pass-as-subdirectory/1604/8

更新: 上記のフォーラムで確認されているように、現在、Mattermost ではサブフォルダーの構成はできません。

于 2016-06-06T19:02:21.563 に答える