RestAPIポートの変更¶
EDMをセットアップした場合、RestAPIはtomcat(8060ポート)で受け付けるようになっています。 RestAPIの受付をNginx(80ポート)に制限する場合は、以下の設定を行ってください。
- Nginxの設定を追加 Nginxの設定ファイルのフォルダ(/etc/nginx/conf.d/locations)配下に、以下の定義を追加した設定ファイル(edm.conf)を格納してください
location /api/1/{
proxy_request_buffering on;
proxy_intercept_errors on;
proxy_pass http://127.0.0.1:8060/api/1/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forworded-Proto https;
proxy_set_header X-Forworded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forworded-Host $host;
proxy_set_header X-Forworded-Server $host;
error_page 413 500 502 503 504 =500 /50x.json;
}
- WebGUIの設定の変更 WebGUIの格納フォルダ(/etc/nginx/html/テナントID)配下のconfigファイルに記載しているbaseUriのポート番号の指定を変更してください
- "baseUri":"http://xxxx:8060/api/"
+ "baseUri":"http://xxxx/api/"
- ブラウザのキャッシュクリア configはブラウザにダウンロードされるため、ブラウザキャッシュを一旦クリアし、再度WebGUIでアクセスしてください