We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nginx を使って、ポート1個だけで narou にアクセスしたいですが、
server { listen 80; location / { proxy_pass http://novel:33000; } location /ws { proxy_pass http://novel:33001; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header Host $host; proxy_read_timeout 86400; } }
今の web UI の websocket uri はハードコーディングされている:
narou/lib/web/public/resources/narou.library.js
Line 218 in 59aec08
何らかの方法で uri を ws://<NAROU_HOST>/ws に変わりたいです。
ws://<NAROU_HOST>/ws
追記: wss://に設定したら SSL ターミネーションも対応できると思います
wss://
(外国人です、変な日本語を使ったら許して下さい)
The text was updated successfully, but these errors were encountered:
Add an option to set websocket uri
3ccb76b
PoC of whiteleaf7#381 * use websocket uri saved in local storage * add a menu entry to set its value * default value determined by port/protocol
PoC (op8867555@3ccb76b) と Docker image を作りました。気軽に試してみて下さい。
Sorry, something went wrong.
0f2099b
No branches or pull requests
nginx を使って、ポート1個だけで narou にアクセスしたいですが、
今の web UI の websocket uri はハードコーディングされている:
narou/lib/web/public/resources/narou.library.js
Line 218 in 59aec08
何らかの方法で uri を
ws://<NAROU_HOST>/ws
に変わりたいです。追記:
wss://
に設定したら SSL ターミネーションも対応できると思います(外国人です、変な日本語を使ったら許して下さい)
The text was updated successfully, but these errors were encountered: