Jump to content
Forumu Destekleyenlere Katılın ×
Paticik Forumları
2000 lerden beri faal olan, çok şukela bir paylaşım platformuyuz. Hoşgeldiniz.

Apache virtualhost sorunum


monoscope

Öne çıkan mesajlar

Merhaba,

şimdi şöyle bir isteğim var;

domain.com yazıldığında web klasörüne gitsin
domain.com/blog yazıldığında 4000 portuna yönlensin istiyorum


<VirtualHost *:80>
ServerName domain.com
ServerAlias www.domain.com
DocumentRoot /var/www/domain.com/public_html/web
</VirtualHost>

<VirtualHost *:80>
ProxyPreserveHost On
ProxyRequests Off
ServerName www.domain.com/blog
ServerAlias domain.com/blog
ProxyPass / http://localhost:4000/
ProxyPassReverse / http://localhost:4000/
</VirtualHost>


Burda portu 8080 yaparsam ve domain.com:8080'a gitmeye çalışırsam düzgünce çalışıyor fakat yukarıdaki şekilde yaptığımda not found oluyor. Nasıl düzeltebilirim ?
Link to comment
Sosyal ağlarda paylaş

Server domain.com/blog olmaz. domain.com olur anca.

Sunu bi dene bakim olcak mi? ikinciyi kaldir tumden.


<VirtualHost *:80>
ServerName domain.com
ServerAlias www.domain.com
DocumentRoot /var/www/domain.com/public_html/web

ProxyPreserveHost On
ProxyRequests Off
ProxyPass /blog/ http://localhost:4000/
ProxyPassReverse /blog/ http://localhost:4000/

</VirtualHost>
Link to comment
Sosyal ağlarda paylaş

  • 2 hafta sonra ...
×
×
  • Yeni Oluştur...