Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

web security

If none of the specific sub-forums seem right for your thread, ask here.
Post Reply
Message
Author
dhivyan
Posts: 3
Joined: 2021-07-07 09:56

web security

#1 Post by dhivyan »

Hello,
I have set up an apache web server with debian which is connected directly to my router but the router is very limited I can only do port forwarding in order to allow them.
I would like to know what more I can do on my server to secure my web page ?

Thank you for your help.

skeviljeff
Posts: 2
Joined: 2021-06-30 11:33
Has thanked: 1 time

Re: web security

#2 Post by skeviljeff »

Hi, to secure your web page you can use a login authentification
in var/www/
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>

Go to the directory you want to protect. For example:
/var/www/html/admin
nano .htaccess

dhivyan
Posts: 3
Joined: 2021-07-07 09:56

Re: web security

#3 Post by dhivyan »

thank for your help

Post Reply