Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- I made a few changes to your docker compose and the .env file, some major, some minor:
- Note: the main issue was that you need a domain name and a reverse proxy for this to work
- docker-compose.yml Changes:
- 1. Changed the mongodb image: mongo:8.0-noble
- 2. Changed mongosh mongodb://notesnook-db:27017 used the container name instead of localhost, localhost should work fine, but I prefer using the container name
- 3. Added some extra environments for the minio container to not give you any issues with images/attachments
- 4. Edited the minio command, including a connection to the API
- 5. Changed the S3_INTERNAL_SERVICE_URL: "https://notesnook-s3.example.com" to the FQDN (attachments will work now with no issues)
- 6. Changed the MONGODB_CONNECTION_STRING to use container name instead of localhost
- .env file Changes:
- 1. Used SMTP_PORT=587 as the SSL port 465 doesn't work in my testing, instead I used the STARTTLS port 587
- 2. Changed all the public URLs to subdomains
- 3. If you are using the official notesnook app, you need to set NOTESNOOK_APP_PUBLIC_URL=https://app.notesnook.com
- Importnant notes:
- You need a fully qualified domain name and a reverse proxy to be able to use the notesnook app, check the list:
- Note: I use nginx proxy manager (NPM) as it is very friendly and has a GUI and you can find many YouTube tutorials out there, it also comes with certbot for the letsencrypt SSL certs, but any reverse proxy should work.
- Sync server: ServerIP:5264 > notesnook.example.com # This one have no environment variable
- Auth server: ServerIP:8264 > notesnook-auth.example.com
- Events (sse) server: ServerIP:7264 > notesnook-events.example.com # This one have no environment variable
- Monograph server: ServerIP:6264 > notesnook-monograph.example.com
- Minio/s3 server: ServerIP:9000 > notesnook-s3.example.com
- Set those in the .env
- MONOGRAPH_PUBLIC_URL=https://notesnook-monograph.example.com
- AUTH_SERVER_PUBLIC_URL=https://notesnook-auth.example.com
- ATTACHMENTS_SERVER_PUBLIC_URL=https://notesnook-s3.example.com
- Set this in the docker-compose.yml:
- S3_INTERNAL_SERVICE_URL: "https://notesnook-s3.example.com"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement