summaryrefslogtreecommitdiff
path: root/~fauno/spawn-fcgi-php/public_html.conf.example
diff options
context:
space:
mode:
authorMárcio Alexandre Silva Delgado <coadde@lavabit.com>2013-08-30 16:11:09 -0300
committerMárcio Alexandre Silva Delgado <coadde@lavabit.com>2013-08-30 16:11:09 -0300
commit479722d138d109c10b9895a22868463c642e7edb (patch)
tree7ec3471b9aa6a0d24b735040575b1923e4b26856 /~fauno/spawn-fcgi-php/public_html.conf.example
parenta7cbbe0d9d06f75042fe4267a19833cf95e2d7d2 (diff)
parente73edbc68c2fd12028bb3e6e0da12fda51f4f3cd (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to '~fauno/spawn-fcgi-php/public_html.conf.example')
-rw-r--r--~fauno/spawn-fcgi-php/public_html.conf.example16
1 files changed, 0 insertions, 16 deletions
diff --git a/~fauno/spawn-fcgi-php/public_html.conf.example b/~fauno/spawn-fcgi-php/public_html.conf.example
deleted file mode 100644
index 74f6c2b4b..000000000
--- a/~fauno/spawn-fcgi-php/public_html.conf.example
+++ /dev/null
@@ -1,16 +0,0 @@
-location ~ ^/~([^/]+)(/?.*)$ {
- set $username $1;
- alias /home/$1/public_html/$2;
- autoindex on;
- location ~ \.php {
- #fastcgi_pass 127.0.0.1:9000;
- # or for multiusers, one port per user
- fastcgi_pass 127.0.0.1:$port;
- # or for unix domain sockets
- #fastcgi_pass unix:/var/run/spawn-fcgi/spawn-fcgi.$username.sock;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- include /etc/nginx/conf/fastcgi_params;
- }
-}
-# vi: ft=nginx