>I didn't know you were running a 3rd-party application. Do you need
>the application to behave differently given a particular client? If
>not, there's nothing to do. If so, you probably need to ask the
>Alfresco folks how to do that. I personally know nothing about
>Alfresco, though there may be some folks on the list who do and might
>reply here.
I need to revisit this issue. Here is my apache vhost:
<VirtualHost *:80>
ServerName share.*
#This rewrites https://share.anydomain.tld to our alfresco server
RewriteCond %{HTTP_HOST} ^share\.
RewriteCond %{HTTPS} on
RewriteRule ^/(.*) http://192.168.123.3:8080/share/$1 [P]
RedirectMatch ^/$ /share/
</VirtualHost>
This lands on the the apache part not the tomact part (both apache and tomcat are the same
server). We need http://share.*.* to land on the tomcat web app. Any advise?
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org
|