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
In the subscription "outbounds": section "address": "" is left empty which cause to fail subscription service:
"outbounds":
"address": ""
"outbounds": [ { "protocol": "shadowsocks", "...": "..." }, "settings": { "servers": [ { "...": "...", "address": "", "port": 12345, "...": "..." } ] }
Instead while checking generated URL and link via Inbounds-Details all is generated correctly using the hostname provided.
Inbounds-Details
hostname
It might be the issues with https://github.com/alireza0/x-ui/blob/main/web/assets/js/model/xray.js#L1284 and similar functions as later address is used to generate link instead of host variable:
address
host
genSSLink(address='', port=this.port, forceTls, remark='', clientPassword) { //... let link = `ss://${safeBase64(settings.method + ':' + password.join(':'))}@${address}:${port}`; //... }
The text was updated successfully, but these errors were encountered:
It might be related to your configuration in External Proxy. genSSLink is a function for generating link and not related to the json Sub! Link generator is already uses more complex usage of host: https://github.com/alireza0/x-ui/blob/main/web/assets/js/model/xray.js#L1513
Sorry, something went wrong.
No branches or pull requests
In the subscription
"outbounds":
section"address": ""
is left empty which cause to fail subscription service:Instead while checking generated URL and link via
Inbounds-Details
all is generated correctly using thehostname
provided.It might be the issues with https://github.com/alireza0/x-ui/blob/main/web/assets/js/model/xray.js#L1284 and similar functions as later
address
is used to generate link instead ofhost
variable:The text was updated successfully, but these errors were encountered: