By davidAxolotl
Hobbyist needing to configure my note-taking/markdown server, but my limited experience with Linux only got me so far into the setup process. I am willing to hire someone but don’t know where to look or what to look for. I tried to do it with help from the forum but it’s taken a long time and I haven’t gotten anywhere.
I need to make sure everything is secure (enable SSL). It should be quite straightforward. https://github.com/zadam/trilium/wiki/Server-installation Attempting to install a Trilium server on Digitalocean or a VM to synchronize my notes.
Attempted to transfer my google domain to Google Cloud and setup SSL but couldn’t get around some issues. https://www.cloudron.io/button/com.github.trilium.cloudronapp.html Was planning to use Cloudron to accelerate the setup process, or Trilium could be installed directly into DigitalOcean if preferred.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Have you tried using Lets Encrypt with certbot to install the SSL certificate in the nginx reverse proxy? I saw on the github link above that you can use nginx as reverse proxy.
Trillium can be installed in Digital Ocean server with Docker setup or can be done using the manual installation. Trillium is running on port 8080 and we need to proxy pass with Nginx to run it under your domain name. Rgearding SSL issues, the domain needs to be setup with normal nginx configuration and we can use paid SSL or Free SSL (Let’s Encrypt). Then proxy pass port 8080 to the domain with the below conf as mentioned in Trillium setup and it will work properly.
location /trilium/ {
proxy_pass http://127.0.0.1:8080/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection ‘upgrade’;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.