Browse Source

remove local settings

Keith Newman 10 years ago
parent
commit
ac229bfaac
1 changed files with 3 additions and 3 deletions
  1. 3 3
      frameworks/PHP/limonade/deploy/nginx.conf

+ 3 - 3
frameworks/PHP/limonade/deploy/nginx.conf

@@ -7,7 +7,7 @@ events {
 }
 
 http {
-    include       /home/knewman/FrameworkBenchmarks/installs/nginx/conf/mime.types;
+    include       /usr/local/nginx/conf/mime.types;
     default_type  application/octet-stream;
     access_log off;
     sendfile        on;
@@ -22,7 +22,7 @@ http {
         listen       8080;
         server_name  localhost;
 
-        root /home/knewman/FrameworkBenchmarks/frameworks/PHP/limonade/;
+        root /home/ubuntu/FrameworkBenchmarks/limonade/;
         index  index.php;
 
         location / {
@@ -39,7 +39,7 @@ http {
             fastcgi_keep_conn on;
             fastcgi_index  index.php;
             fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
-            include        /home/knewman/FrameworkBenchmarks/installs/nginx/conf/fastcgi_params;
+            include        /usr/local/nginx/conf/fastcgi_params;
         }
 
     }