diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-11-14 17:19:06 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-11-14 17:19:06 -0300 |
commit | 307bc83ad777adf5abd28c7ff6564acabe87dd76 (patch) | |
tree | 0fda79f641422d5908a36ce34237c9fe3580025e /~fauno/spawn-fcgi-php/nginx.conf.example | |
parent | 545dff604b5d9c10e17fc89b4041b1688741cbed (diff) | |
download | abslibre-307bc83ad777adf5abd28c7ff6564acabe87dd76.tar.gz abslibre-307bc83ad777adf5abd28c7ff6564acabe87dd76.tar.bz2 abslibre-307bc83ad777adf5abd28c7ff6564acabe87dd76.zip |
Missing PKGBUILDs
Diffstat (limited to '~fauno/spawn-fcgi-php/nginx.conf.example')
-rw-r--r-- | ~fauno/spawn-fcgi-php/nginx.conf.example | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/~fauno/spawn-fcgi-php/nginx.conf.example b/~fauno/spawn-fcgi-php/nginx.conf.example new file mode 100644 index 000000000..35d0868f3 --- /dev/null +++ b/~fauno/spawn-fcgi-php/nginx.conf.example @@ -0,0 +1,34 @@ +user http; +worker_processes 1; + +error_log logs/error.log; + +#pid logs/nginx.pid; + +events { + worker_connections 1024; +} + + +http { + include mime.types; + default_type application/octet-stream; + + sendfile on; + #tcp_nopush on; + + #keepalive_timeout 0; + keepalive_timeout 65; + + #gzip on; + + # the file with mapping username per port + include /etc/nginx/conf/map_user2port.conf; + #or only + #include map_user2port.conf + + # Servers configurations ... + include server.conf.example; + + } +} |