appwiki:apache

no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


Last revision
appwiki:apache [2021/08/28 08:00] – created ying
Line 1: Line 1:
 +====== Web Security Check Guide ======
 +
 +  * Is My Website Hacked? Find Out With This Checklist
 +    * ref: http://www.whoishostingthis.com/resources/website-hacked-checklist/
 +    * Google web check: http://www.google.com/safebrowsing/diagnostic?site=yourdomain.com
 +    * sucuri check: http://sitecheck.sucuri.net/
 +
 +  * ref:
 +    * https://www.nutsandboltsmedia.com/how-to-find-out-if-your-wordpress-site-has-been-hacked/
 +    * http://www.chriswiegman.com/2013/06/how-to-tell-if-your-site-has-been-hacked/
 +
 +====== Advanced Website Security Setup ======
 +
 +  * read more on [[appwiki:apache|Apache Web Server intro]]
 +
 +  * limit website access through certain IP or IP range
 +    * change Apache site directory .htaccess file <code>
 +<Directory /docroot>
 +order deny,allow
 +deny from all
 +allow from yourIP
 +allow from yourIPv6
 +</Directory> 
 +</code>
 +    * ref: http://httpd.apache.org/docs/2.0/sections.html#filesystem
 +    * http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html#allow
  
  • appwiki/apache.txt
  • Last modified: 2021/08/28 08:00
  • by ying