Difference between revisions of "Apache"

From Steak Wiki
Jump to navigationJump to search
Line 40: Line 40:
 
  cd /usr/share/GeoIP
 
  cd /usr/share/GeoIP
 
  #wget geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
 
  #wget geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
  #gunzip GeoLiteCity.dat.gz
+
  #gunzip GeoLiteCity.dat.gz - this didn't work. todo
  
 
geoip.conf
 
geoip.conf

Revision as of 03:00, 13 October 2020

Apache hardening: https://wiki.zoneminder.com/Ubuntu_Install_ZoneMinder_on_Ubuntu_Server


Eliminate Error Pages

Append this:

Contents of /etc/apache2/apache.conf

ErrorDocument 400 /error555.html ErrorDocument 401 /error555.html ErrorDocument 404 /error555.html ErrorDocument 403 /error555.html ErrorDocument 500 /error555.html ErrorDocument 502 /error555.html ErrorDocument 503 /error555.html ErrorDocument 504 /error555.html


Contents of /var/www/html/error555.html

Just a blank file.

Misc

enable / disable ssl (listen on port 443)

a2enmod ssl
a2dismod ssl


enable / disable certain php vers

a2enmod php5.6
a2dismod php5.5

GeoBlocking

#apt-get install libapache2-mod-geoip 
#a2enmod geoip 
cd /usr/share/GeoIP
#wget geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
#gunzip GeoLiteCity.dat.gz - this didn't work. todo

geoip.conf

<IfModule mod_geoip.c>
  GeoIPEnable On
  GeoIPDBFile /usr/share/GeoIP/GeoIP.dat
</IfModule>

/etc/apache2/sites-available/webseite-geoip

<VirtualHost *>
        ServerAdmin webmaster@example.com
        ServerName www.example.com
        ServerAlias www.example.com *.www.example.com
        DocumentRoot /var/www/webseite/

<Directory /var/www/webseite/>
        AllowOverride FileInfo Options
        SetEnvIf GEOIP_COUNTRY_CODE AT AllowCountry
        Deny from all
        Allow from env=AllowCountry
        Allow from 192.168.
</Directory>

###### Logs ####

        ErrorLog /var/log/apache2/webseite.error.log
        LogLevel warn
        CustomLog /var/log/apache2/webseite.access.log combined
</VirtualHost>
 

This guide assumes you know how to restart apache. Make sure ipv6 isnt' enabled, or if you do enable it, you'll also need geoipv6.dat...