Empêcher l’exposition des sources PHP
This commit is contained in:
parent
32c33580e4
commit
93647ef9e3
3 changed files with 11 additions and 1 deletions
|
|
@ -1,9 +1,17 @@
|
|||
location = __PATH__/index.php {
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME __INSTALL_DIR__/public/index.php;
|
||||
fastcgi_param HTTP_PROXY "";
|
||||
fastcgi_pass unix:/var/run/php/php__PHP_VERSION__-fpm-__APP__.sock;
|
||||
}
|
||||
|
||||
location __PATH__/ {
|
||||
alias __INSTALL_DIR__/public/;
|
||||
index index.php;
|
||||
client_max_body_size 260M;
|
||||
try_files $uri $uri/ @__APP__;
|
||||
location ~ /\. { deny all; }
|
||||
location ~ \.php$ { return 404; }
|
||||
}
|
||||
|
||||
location @__APP__ {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue