apache

  • Enable Apache Module mod_authz_user

    This module provides authorization capabilities so that authenticated users can be allowed or denied access to portions of the web site. mod_authz_user grants access if the authenticated user is listed in a Require user directive. Alternatively Require valid-user can be used to grant access to all successfully authenticated users.

    Uncomment this line in /etc/httpd/conf/httpd.conf:

    LoadModule authz_user_module modules/mod_authz_user.so

    Then restart apache.

  • Setup Proxy on WAMP server

    Edit this file

    C:\wamp\bin\apache\Apache2.2.11\conf\extra\httpd-vhosts.conf
  • Restart Apache

    sudo /etc/init.d/apache2 restart
  • Disable suexec

    To find suexec type in

    whereis suexec

    Result

    suexec: /usr/sbin/suexec /usr/sbin/suexec.saved_by_psa /usr/share/man/man8/suexec.8.gz

    Now move the file to a backup

    mv /usr/sbin/suexec /usr/sbin/suexec_old

    Restart apache

    /etc/init.d/httpd  restart