I am running on Windows 19 Server.
Using the mod_proxy instead of ajp, works for me.
I also do not use ProxyPreserveHost
Something like this might work for you.
<VirtualHost *:80>
ServerName myserver.com
ServerAlias www.myserver.com
ProxyPass /server http://localhost:8080/server
ProxyPassReverse /server http://localhost:8080/server
</VirtualHost>
This should redirect myserver.com/server to http://localhost:8080/server.
If you want to redirect myserver.com to
http://localhost:8080/server.
I think you would have to use
ProxyPass / http://localhost:8080/server
ProxyPassReverse / http://localhost:8080/server
But I'm not sure what you are trying to accomplish.
The subject line says 'how to add https support'.
But later in the thread you say you just want to 'proxy requests
to tomcat via reverse proxying'
- eric
--
All messages to this mailing list should adhere to the Code of Conduct: https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
---
You received this message because you are subscribed to the Google Groups "DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dspace-tech...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dspace-tech/1a34d9dd-311d-4378-b0cb-447a9fbc10edn%40googlegroups.com.
Yes, it asked for a path. I don't know what I should input into it. What path should I include here? thanks!!
