Debian 12.4 Instance on Lightsail using .htaccess and .htpasswd

0

I want to add mandatory authentication using .htaccess and .htpasswd for a folder called 'admin' So, I created an .htaccess file inside the 'admin' folder with the next code

AuthType Basic AuthName "Área Restringida" AuthUserFile /etc/apache2/authfiles/htpasswd-private Require valid-user

The path for the .htaccess file is /var/www/html/admin

The path for the .htpasswd file is /etc/apache2/authfiles/htpasswd-private, and I used the command 'htpasswd -c /etc/apache2/authfiles/htpasswd-private user1' to create the .htpasswd file with a username and password.

After restarting the Apache services, when attempting to access the URL dominio.mx/admin in the browser, the authentication doesn't appear

My question is, do I need to make some configurations or installations for it to work?

質問済み 4ヶ月前153ビュー
2回答
0

Hi LauraEquihua,

Depends that you want to use .htaccess files then you need to do:

AllowOverride AuthConfig

or place data into httpd.conf

Below link may help to understand the logic for Apache.

https://httpd.apache.org/docs/2.4/howto/auth.htm

https://www.howtogeek.com/devops/how-to-setup-basic-http-authentication-on-apache/

Thanks,

profile picture
回答済み 4ヶ月前
0

Hello,

It looks like the community answer is nearly there but the provided URLs are slightly off.

Here is the correct URL for setting up auth on Apache, specifically the section being referenced regarding enabling authentication directives: https://httpd.apache.org/docs/2.4/howto/auth.html#theprerequisites

Here is further documentation on Apache's AllowOverride configuration directive: https://httpd.apache.org/docs/2.4/mod/core.html#allowoverride

AWS
jscta
回答済み 4ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ