Przeglądaj źródła

[hauk] Update file paths

Colin Powell 3 lat temu
rodzic
commit
94e708d923
1 zmienionych plików z 3 dodań i 3 usunięć
  1. 3 3
      ansible/roles/hauk/files/nginx.conf

+ 3 - 3
ansible/roles/hauk/files/nginx.conf

@@ -1,12 +1,12 @@
 location /hauk {
-    root   /var/www/;
+    root   /usr/local/www/;
     index  index.html index.htm;
 }
 
 location ~ \.php$ {
-    root   /var/www;
+    root   /usr/local/www;
     fastcgi_pass   127.0.0.1:9000;
     fastcgi_index  index.php;
-    fastcgi_param  SCRIPT_FILENAME  /var/www$fastcgi_script_name;
+    fastcgi_param  SCRIPT_FILENAME  /usr/local/www$fastcgi_script_name;
     include        fastcgi_params;
 }