Hello al,
I'm reaching out to see if anyone can point me to steps which may outline how to install and leverage observium on security onion.
I've followed all of the observium steps, however it appears security onion is restricting my ability to open observium as a subdomain.
Essentially I'd like to open observium as
observium.mydomain.com
I'm certain its something easy, but it seems to be eluding me.
I've tried adding both a virtual host and an alias to the /etc/apache2/apache2.conf file, but this doesn't seem to work for me.
Here is the VirtualHost rules I'm trying to add:
<VirtualHost *:443>
ServerAdmin webmaster@localhost
ServerName
observium.mydomain.com
DocumentRoot /opt/observium/html
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /opt/observium/html>
DirectoryIndex index.php
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
ServerSignature On
</VirtualHost>
Would someone be able to point me in the right direction?
thank you very much for your help!
Chris