Virtual host apache pour ghost

Published 09-10-2015 11:51:55

On a donc ghost qui tourne sur le port 2368 et apache sur le port 80. Pour renvoyer apache vers ghost de manière transparente, 2 mods sont à activer: sudo a2enmod proxy
sudo a2enmod proxy_http
Ensuite, modification du virtual host dans /etc/apache2/sites-available/ghost.conf:

<VirtualHost *:80>
    ServerName knep.me
    ProxyPreserveHost on
    ProxyPass / http://knep.me:2368/
</VirtualHost>

Petit lien symbolique pour indiquer que c’est actif sudo ln -s /etc/apache2/sites-available/ghost.conf /etc/apache2/sites_enabled/
et on finit par redémarrer le service apache: sudo service apache2 restart