<IfModule mod_authn_file.c>
  # For Apache 2.4 or later
  AuthType Basic
  AuthName "CREDENTIALS: "
  AuthBasicProvider file
  AuthUserFile /home/nathanpc/public_html/.secure/.htpasswd
  Require user nathan
</IfModule>

<IfModule mod_auth.c>
  # For Apache 2.2 or lower
  AuthType Basic
  AuthName "PASSWORD: "
  AuthUserFile /home/nathanpc/public_html/.secure/.htpasswd
  Require nathan
</IfModule>
