Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter KaptenBlack

    (@kaptenblack)

    During my testing returning to an earlier virtual snap shot of the server and set up everything again. This time it worked. Unfortunately I don’t have a solution to what exactly fixed it. I guess I messed something up in configuring or installing and I didn’t the next time i set everything up. Thank you all for your assistance

    Thread Starter KaptenBlack

    (@kaptenblack)

    I checked that file located at /etc/apache2/htppd.conf and it was empty. I had read forums indicating similar changes to /etc/apache2/sites-available/default and when I change allow override to all the main site no longer works. This also has a symbiotic relation ship with /etc/apache2/sites-enabled/000-default.

    <VirtualHost *:80>
    	ServerAdmin webmaster@localhost
    
    	DocumentRoot /var/www
    	<Directory />
    		Options FollowSymLinks
    		AllowOverride All
    	</Directory>
    	<Directory /var/www/>
    		Options Indexes FollowSymLinks MultiViews
    		#Options All no change
    		#AllowOverride None
    		Allowoverride All
    		Order allow,deny
    		allow from all
    	</Directory>
    
    	ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    	<Directory "/usr/lib/cgi-bin">
    		AllowOverride None
    		Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
    		Order allow,deny
    		Allow from all
    	</Directory>
    
    	ErrorLog ${APACHE_LOG_DIR}/error.log
    
    	# Possible values include: debug, info, notice, warn, error, crit,
    	# alert, emerg.
    	LogLevel warn
    
    	CustomLog ${APACHE_LOG_DIR}/access.log combined
    
        Alias /doc/ "/usr/share/doc/"
        <Directory "/usr/share/doc/">
            Options Indexes MultiViews FollowSymLinks
            AllowOverride None
            Order deny,allow
            Deny from all
            Allow from 127.0.0.0/255.0.0.0 ::1/128
        </Directory>
    
    </VirtualHost>
Viewing 2 replies - 1 through 2 (of 2 total)