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 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南