summaryrefslogtreecommitdiff
path: root/~fauno/spawn-fcgi-php/public_html.conf.example
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-08-28 16:24:19 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2013-08-28 16:24:19 -0300
commite0acf42ad03cac39336017463fad3f5ff2d3179f (patch)
tree6ae1fb22259bf4019c40561c760948e36123c98f /~fauno/spawn-fcgi-php/public_html.conf.example
parent3f64055d01d6333452df7b36a2a581aa3a6ff96f (diff)
remove fauno personal repo from 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