How to ingrate Tryton into a domain name as a subdomain on a Website

How to ingrate Tryton into a domain name as a subdomain on a Website

Tryton.mydomain.com

I am currently using Linode for Cloud Hosting of Tryton as suggested to me by Mr. Dario Alvarez here on the forum. Linode seems and excellent and fair priced choice. With that said I have not yet set up a website for the company. I may do this on Linode. I want to have the main site www.mydomain.com and Tryton on a sub domain Tryton.mydomain.com.

I have been searching for instructions on this and this request maybe outside the scope on the Tryton forum but maybe some could point me in the right direction. I thought the Tryton Docker had a web server in the base Docker image. Thanks for any help.

TelematicMan

via Nginx proxy

server_name tryton.mydomain.com;

location / {
  proxy_set_header Host $http_host;
  proxy_pass http://127.0.0.1:4545; # trytond host:port

}

2 Likes

Thank You for the direction!