[Agrega] archivo de configuración de nginx para heroku

This commit is contained in:
Ricardo García Jiménez 2022-05-12 18:20:57 -05:00
parent e3a1054d94
commit 94e5de14c1
2 changed files with 24 additions and 0 deletions

1
Procfile Normal file
View File

@ -0,0 +1 @@
web: vendor/bin/heroku-php-nginx -C nginx.heroku.conf public/

23
nginx.heroku.conf Normal file
View File

@ -0,0 +1,23 @@
add_header X-Frame-Options "SAMEORIGIN";
add_header X-Content-Type-Options "nosniff";
index index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
error_page 404 /index.php;
location ~ \.php$ {
try_files @heroku-fcgi @heroku-fcgi;
}
location ~ /\.(?!well-known).* {
deny all;
}