Access YouTrack through directory instead of port
Is it possible, without the use of Apache httpd redirects, to install or access YouTrack via a directory-like URL?
Instead of example.com:2000, it becomes example.com/youtrack
Thanks!
Instead of example.com:2000, it becomes example.com/youtrack
Thanks!
Please sign in to leave a comment.
Look inside the <Server> node (it should be the first) for the first <Connector> node..I believe it looks (by default) something like this:
<Connector port="80" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
You want to change it to something like this:
<Connector address="192.168.1.109" port="80" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
How will simply adding the host's local IP address do anything different?
Thanks, Chris