Hi all the gurus
I just managed to setup ghost (self host), with environments as follow: Ubuntu, Apache, MariaDB, Node’s 18.x and also managed to install ghost with: ghost install (ghost 5.82.1) - my not to fancy site: https://ic3blue.com/
I also would like to host Clamav database cvdupdate e.g. https://ic3blue.com/clamavcvd - I managed to make it work with Wordpress, but not with ghost
Below is the snippet of my conf setting:
ServerName ic3blue.com
DocumentRoot /var/www/ghost/
Alias "/clamavcvd/" "/var/www/testing/"
<Directory "/var/www/testing/">
Options All
Require all granted
AllowOverride All
Order allow,deny
allow from all
</Directory>
<Directory /var/www/ghost/>
Options Multiviews FollowSymlinks
DirectoryIndex index.php index.html
AllowOverride All
Require all granted
Satisfy Any
</Directory>
ErrorLog ${APACHE_LOG_DIR}/ghost_error.log
CustomLog ${APACHE_LOG_DIR}/ghost_access.log combined
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/ic3blue.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/ic3blue.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:2368/
ProxyPassReverse / http://127.0.0.1:2368/
RequestHeader set X-Forwarded-Proto “https”
Can somebody help me please
Thank you