1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/drupal_ynh.git synced 2024-09-03 18:35:53 +02:00

Remove duplicate line in nginx configuration

This commit is contained in:
Salamandar 2024-01-12 11:08:55 +01:00
parent c831c0f2c3
commit 67a6714075

View file

@ -3,14 +3,14 @@ location __PATH__/ {
# Path to source
alias __INSTALL_DIR__/__NAME__/;
index index.php;
if (!-e $request_filename)
{
rewrite ^__PATH__/(.+)$ __PATH__/index.php?q=$1 last;
}
index index.php;
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
client_max_body_size 500M;