Most serious people have a domain name. Some relevant information here:
I use Apache server to configure Traccar Server Secure Connection. I need to change the Traccar Server connection from IP Address to https://www.i-cna.com/tracgps , but it doesn't seem to work.
<VirtualHost *:80>
ServerName www.i-cna.com
Redirect / https://www.i-cna.com/
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost _default_:443>
ServerName www.i-cna.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ProxyRequests off
ProxyPass /tracgps/api/socket ws://localhost:8082/api/socket
ProxyPassReverse /tracgps/api/socket ws://localhost:8082/api/socket
ProxyPass /tracgps/ http://localhost:8082/
ProxyPassReverse /tracgps/ http://localhost:8082/
ProxyPassReverseCookiePath / /tracgps/
Redirect permanent /tracgps /tracgps/
</VirtualHost>
</IfModule>
arthur please don't duplicate your questions.
Sorry~
I installed Traccar server and it works, but currently I use IP to connect to the website. Is there anyone who has tried putting it in a domain?