浏览代码

remove local settings

Keith Newman 10 年之前
父节点
当前提交
ac229bfaac
共有 1 个文件被更改,包括 3 次插入3 次删除
  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;
         }
 
     }