Bununla bir süredir mücadele ettim ve kesinlikle yanlış bir şeyler yapıyorum.
Aynı makinede apache sunucum ve bir JBoss sunucum var. Mydomain.com trafiğini JBoss localhost: 8080 / example'a yeniden yönlendirmek istiyorum. DNS şu anda alanadim.com için ayarlanmıştır ve tarayıcıya girildiğinde doğrudan bağlantı noktası 80'e gidecektir.
Sorum şu: apache'ye belirli bir alan adı geldiğinde (bu durumda, "alanadim.com") farklı bir bağlantı noktasına nasıl yönlendirebilirim?
<VirtualHost ip.addr.is.here>
ProxyPreserveHost On
ProxyRequests Off
ServerName mydomain.com
ProxyPass http://mydomain.com http://localhost:8080/example
ProxyPassReverse http://mydomain.com http://localhost:8080/example
</VirtualHost>
GÜNCELLENDİ w / Öneriler - Hala 8080 numaralı bağlantı noktasına iletilmiyor
<VirtualHost *:80>
ProxyPreserveHost On
ProxyRequests Off
ServerName mydomain.com
ServerAlias www.mydomain.com
ProxyPass http://mydomain.com http://localhost:8080/example
ProxyPassReverse http://mydomain.com http://localhost:8080/example
</VirtualHost>