How to Make Your Laravel Website More Secure When Using Apache Web Server – Forum – Mas AL Forum

BLOG IT SYSADMIN

Daftar akun digitalocean untuk mendapatkan free credit 100$.
DigitalOcean Referral Badge
How to Make Your La...
 
Notifications
Clear all

How to Make Your Laravel Website More Secure When Using Apache Web Server

1 Post
1 Pengguna
0 Reactions
77 Dilihat
Post: 15
Admin
Topic starter
(@alvian)
Eminent Member
Joined: 3 tahun lalu

1. Protect your .env file by adding the following line to your Apache virtual host configuration:

- Path: /etc/apache2/apache2.conf

<FilesMatch "^\.ht">
        Require all denied
</FilesMatch>

#add following lines:

<Files .env>
    Order allow,deny
    Deny from all
</Files>

 

2. Disable the Apache autoindex module to protect your code from being indexed by web browsers:

a2dismod --force autoindex

 

3. Enable the default Apache configuration to display the default webpage when accessing your server's IP address:

a2ensite 000-default.conf

 

4. Create an index.html file in your default Apache root directory at path /var/www/html.

 

By following these steps, you can protect your Laravel environment from hacking attempts aimed at obtaining credentials stored in your .env file. Thank you. 🙂

Share: