Compare commits

...

2 Commits

Author SHA1 Message Date
borgal
43b98a5ec9 sshwifty auf conf file umgestellt 2022-02-07 13:33:07 +00:00
borgal
2922b537f8 Vikunja API Port angepasst wegen Konflict mit Node Red Alexa 2022-02-07 13:32:06 +00:00
3 changed files with 39 additions and 3 deletions

View File

@@ -8,4 +8,5 @@ services:
restart: always
environment:
- TZ=Europe/Berlin
- SSHWIFTY_SHAREDKEY=${PASSWORD}
volumes:
- ./sshwifty.conf.json:/etc/sshwifty.conf.json

View File

@@ -0,0 +1,35 @@
{
"HostName": "",
"SharedKey": "changeMe",
"DialTimeout": 5,
"Socks5": "",
"Socks5User": "",
"Socks5Password": "",
"Servers": [
{
"ListenInterface": "0.0.0.0",
"ListenPort": 8182,
"InitialTimeout": 3,
"ReadTimeout": 60,
"WriteTimeout": 60,
"HeartbeatTimeout": 20,
"ReadDelay": 10,
"WriteDelay": 10,
"TLSCertificateFile": "",
"TLSCertificateKeyFile": ""
}
],
"Presets": [
{
"Title": "Docker",
"Type": "SSH",
"Host": "192.168.0.111:22",
"Meta": {
"User": "root",
"Encoding": "utf-8",
"Authentication": "Password"
}
}
],
"OnlyAllowPresetRemotes": false
}

View File

@@ -26,7 +26,7 @@ services:
VIKUNJA_DATABASE_DATABASE: vikunja
VIKUNJA_SERVICE_JWTSECRET: <generated secret>
ports:
- 3456:3456
- 3457:3456
depends_on:
- db
volumes:
@@ -39,5 +39,5 @@ services:
ports:
- 8003:80
environment:
VIKUNJA_API_URL: http://192.168.0.111:3456/api/v1
VIKUNJA_API_URL: http://192.168.0.111:3457/api/v1
restart: unless-stopped