Skip to content

Commit

Permalink
TR-4678 Change http to https in sample Apache configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
mtgray-sp committed Oct 1, 2023
1 parent 85e9b01 commit ed9f433
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions content/docs/tech-resources/deep-links-self-serve.md
Original file line number Diff line number Diff line change
Expand Up @@ -444,20 +444,20 @@ To get Android to [auto-verify](#auto-verify) your app's domains (skipping the u
#
<VirtualHost _default_:80>
ServerName yourtrackingdomain.example.com
ProxyPass "/f/" "http://spgo.io/f/" disablereuse=On
ProxyPassReverse "/f/" "http://spgo.io/f/"
ProxyPass "/q/" "http://spgo.io/q/" disablereuse=On
ProxyPassReverse "/q/" "http://spgo.io/q/"
ProxyPass "/f/" "https://spgo.io/f/" disablereuse=On
ProxyPassReverse "/f/" "https://spgo.io/f/"
ProxyPass "/q/" "https://spgo.io/q/" disablereuse=On
ProxyPassReverse "/q/" "https://spgo.io/q/"
Alias "/.well-known" "/var/www/html/securetrack/.well-known"
</VirtualHost>
<VirtualHost _default_:443>
ServerName yourtrackingdomain.example.com
ProxyPass "/f/" "http://spgo.io/f/" disablereuse=On
ProxyPassReverse "/f/" "http://spgo.io/f/"
ProxyPass "/q/" "http://spgo.io/q/" disablereuse=On
ProxyPassReverse "/q/" "http://spgo.io/q/"
ProxyPass "/f/" "https://spgo.io/f/" disablereuse=On
ProxyPassReverse "/f/" "https://spgo.io/f/"
ProxyPass "/q/" "https://spgo.io/q/" disablereuse=On
ProxyPassReverse "/q/" "https://spgo.io/q/"
Alias "/.well-known" "/var/www/html/securetrack/.well-known"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,8 @@ Add the following configuration (putting your own tracking domain into the `Serv
<VirtualHost _default_:80>
ServerName yourtrackingdomain.example.com
ServerPath "/"
ProxyPass "/" "http://spgo.io/" disablereuse=On
ProxyPassReverse "/" "http://spgo.io/"
ProxyPass "/" "https://spgo.io/" disablereuse=On
ProxyPassReverse "/" "https://spgo.io/"
</VirtualHost>
```
Expand Down

0 comments on commit ed9f433

Please sign in to comment.