DeCysos
Phoenix Foto Service
Nginx is still a mystery to me.
Could someone explain to me what the difference between ....
[CODE highlight="1"]location ~* / {
index index.php;
try_files $uri $uri/ /index.php?$query_string;
}[/CODE]
and
[CODE highlight="1"]location / {
index index.php;
try_files $uri $uri/ /index.php?$query_string;
}[/CODE]
consists ?
With my home server I have Plesk running as administration software and this software complains when I use
Plesk complains because there is already an entry for "/".
Since I currently have no home server running without Plesk, I ask myself whether Nginx would complain if I made the change without Plesk and restart the Nginx service.
Would definitely be nice if someone could explain that to me. 😉
Could someone explain to me what the difference between ....
[CODE highlight="1"]location ~* / {
index index.php;
try_files $uri $uri/ /index.php?$query_string;
}[/CODE]
and
[CODE highlight="1"]location / {
index index.php;
try_files $uri $uri/ /index.php?$query_string;
}[/CODE]
consists ?
With my home server I have Plesk running as administration software and this software complains when I use
location / {
. It is quite complicated to use this method which is why I decided to use the following location ~* / {
Plesk complains because there is already an entry for "/".
Since I currently have no home server running without Plesk, I ask myself whether Nginx would complain if I made the change without Plesk and restart the Nginx service.
Would definitely be nice if someone could explain that to me. 😉