openbsd-ports/www/nginx/patches/patch-conf_nginx_conf
edd 6e8899086d Make php easier to configure under nginx, by patching correct paths in.
Diff also does new LIB_DEPENDS/WANTLIB style.

OK from the maintainer, william@
Cheers
2010-08-31 20:05:21 +00:00

68 lines
2.0 KiB
Plaintext

$OpenBSD: patch-conf_nginx_conf,v 1.5 2010/08/31 20:05:21 edd Exp $
--- conf/nginx.conf.orig Mon Apr 6 14:43:46 2009
+++ conf/nginx.conf Sun Aug 1 18:22:58 2010
@@ -1,7 +1,9 @@
-#user nobody;
+user _nginx;
worker_processes 1;
+# Paths specified here (unless absolute), will be relative to
+# ${SYSCONFDIR}/nginx. If not specified, defaults to /var/log/nginx/...
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
@@ -41,7 +43,7 @@ http {
#access_log logs/host.access.log main;
location / {
- root html;
+ root ${NGINX_DIR}/html;
index index.html index.htm;
}
@@ -51,7 +53,7 @@ http {
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
- root html;
+ root ${NGINX_DIR}/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
@@ -61,12 +63,14 @@ http {
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
+ # Make sure you let php-fastcgi know which port. Running it
+ # with '-b 127.0.0.1:9000' will do.
#
#location ~ \.php$ {
- # root html;
+ # root ${NGINX_DIR}/html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
- # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
+ # fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
# include fastcgi_params;
#}
@@ -87,7 +91,7 @@ http {
# server_name somename alias another.alias;
# location / {
- # root html;
+ # root ${NGINX_DIR}/html;
# index index.html index.htm;
# }
#}
@@ -110,7 +114,7 @@ http {
# ssl_prefer_server_ciphers on;
# location / {
- # root html;
+ # root ${NGINX_DIR}/html;
# index index.html index.htm;
# }
#}