Apache: Apache/2.4.29 (Ubuntu)
MySQL: 10.2.20-MariaDB-1:10.2.20+maria~bionic
PHP: 7.2.24-0ubuntu0.18.04.6
Installed steps.
1. Configure apache to show the install page "/var/www/evedev-kb-4.4/install" and browse to "killboard.<name>.com"- Worked
2. Ran through all steps during the install process and had one error. Had to rename packages/database/kb3_invtypes to kb3_invtypes_backup to get the install script to skip this sql package as it has a format error. Once that was done I was able to get all the other things to import to complete the sql import and installation.
3. Reconfigured apache to point to the root directory "/var/www/evedev-kb-4.4/" and browse to "killboard.<name>.com" - Does not display 500 Error
4. Rename install directory to install_backup - Still does not display
It never loads the killboard and I get errors with my htaccess file.
/var/www/evedev-kb-4.4/.htaccess: Options not allowed here, referer: https://killboard.<name>.com/?step=8
-------------------------
.htaccess
-------------------------
Code: Select all
Options -Indexes
Options +Multiviews
<IfModule expires_module>
ExpiresActive On
ExpiresByType image/gif "access plus 6 month"
ExpiresByType image/png "access plus 6 month"
ExpiresByType image/jpg "access plus 6 month"
ExpiresByType image/jpeg "access plus 6 month"
ExpiresByType text/css "access plus 6 month"
ExpiresByType application/javascript "access plus 6 month"
</IfModule>
apache config
-------------------------
Code: Select all
<VirtualHost *:80>
ServerName killboard.<name>.com
</VirtualHost>
<VirtualHost *:443>
ServerName killboard.<name>.com
ServerAlias killboard.<name>.com
DocumentRoot /var/www/evedev-kb-4.4/
<Directory /var/www/evedev-kb-4.4/>
Require all granted
Options FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/killboard-error.log
CustomLog ${APACHE_LOG_DIR}/killboard-access.log combined
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/killboard.<name>.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/killboard.<name>.com/privkey.pem
</VirtualHost>