1
0
mirror of https://github.com/Adam-Ant/media-server-in-a-box synced 2024-07-06 05:36:15 +00:00

Final fixes of muximux

This commit is contained in:
Adam Dodman 2017-03-02 01:53:55 +00:00
parent a9ac8724cd
commit 334b4c37ff

View File

@ -4,7 +4,11 @@ server {
server_name "";
location / {
location ~ \.php$ {
root /www;
index index.php;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php:9000;