R+
R+
Hi, the password is specified in the `SSHWIFTY_SHAREDKEY` environment variable, and according the setting provided above, the value is "WEB_ACCESS_PASSWORD".
Hi, You need HTTPS if Sshwifty is hosted on another machine. It's a restriction by the web browser, see: https://github.com/nirui/sshwifty#why-i-got-error-typeerror-cannot-read-property-importkey-of-undefined
这个大概只能放在长期计划里了。“Known remotes”面板的功能本来只是提供历史记录列表,后来随着用户建议渐渐向其中添加了太多的附加功能的代码,在项目重写之前不太好变更了。
如果你用的是`docker-compose`的话,除了打开Docker的IPv6支持,还需要在`docker-compose.yaml`里指定容器的IPv6地址,否则容器里的程序会无法在建立SOCKET的时候正确的取得本地网络接口(这也是导致`connect: cannot assign requested address`错误的原因)。 具体来说,你可以按照下面的样例修改你的`docker-compose.yaml`: version: '3.3' services: sshwifty: restart: always ports: - '8090:8182' container_name: sshwifty image: 'niruix/sshwifty:latest' networks: sshwifty-network: ipv6_address: ... #在这里指定容器的IPv6地址 networks: sshwifty-network: enable_ipv6: true driver: bridge...
如果你是通过`docker run ...`的方式部署Sshwifty(见:https://github.com/nirui/sshwifty/blob/master/README.md#docker-image ),那么只要Docker打开了IPv6支持即可,因为`docker run`会使用默认的`bridge` network( https://docs.docker.com/config/daemon/ipv6/#use-ipv6-for-the-default-bridge-network )。
Hi. I'm sorry Sshwifty don't currently support that. But the issue is valid, I've added this Issue to the TODO list so I can remember to implement it in the...
Hi @finexss, sorry for the trouble. Sshwifty currently don't really support server that require multi-authentication, and I'm really deep in the mud right now trying to finish my another project....
Hi, Can you provide a bit more information about your setup? I don't have any Apple device as this moment, but maybe I can figure something out if more information...
Have you tried adding the port number (`:8182`) after the host name (i.e `https://yourdomain.synology.me:8182`)? You can also try to do a ping on the macOS device against the host name...
Hi @Topasty, If you can access the instance via host+port (i.e `ssh.XXX.synology.me:8182`), it means the DNS resolver was likely setup correctly. But it still remained a mystery why directly accessing...