Unraid Setup
#1916
Replies: 1 comment 2 replies
-
|
please read docs.opencloud.eu. If you get a "missing or invalid config.json" from the web client, it means your domain and port are not configured correctly. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
Looking for some guidance with installation on Unraid. I have the app installed and running and can access locally via port 9200. I'd like to expose the app through nginx proxy manager which handles my ssl certs from my domain. How should the config.json look to accomplish this? Thanks!
Current config.json
`{
"server": {
"host": "0.0.0.0",
"port": 9200,
"base_url": "currently my local internal IP is here",
"trust_proxy": false
},
"auth": {
"jwt_secret": "YOUR_SECRET_KEY",
"token_expiry_hours": 24
},
"logging": {
"level": "info"
},
"storage": {
"provider": "local",
"local": {
"path": "/data"
}
},
"database": {
"type": "sqlite",
"sqlite": {
"path": "/config/opencloud.db"
}
}
}
`
Beta Was this translation helpful? Give feedback.
All reactions