1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/streams_ynh.git synced 2024-09-03 20:26:20 +02:00

nginx fix

This commit is contained in:
anmol 2019-04-04 23:38:06 +05:30
parent 83a96c7761
commit b60d80a5df

View file

@ -11,7 +11,7 @@
if (!-e $request_filename) if (!-e $request_filename)
{ {
rewrite ^(.*)$ /index.php?q=$1; rewrite ^(.*)$ /index.php?req=$1;
} }
client_max_body_size 20m; client_max_body_size 20m;
@ -39,7 +39,7 @@
allow all; allow all;
if (!-e $request_filename) if (!-e $request_filename)
{ {
rewrite ^(.*)$ /index.php?q=$1; rewrite ^(.*)$ /index.php?req=$1;
} }
} }