jeebus ... futzing around with nginx again so that absolute path in conf is not necessary

This commit is contained in:
Dan Buch
2010-12-29 21:17:41 -05:00
parent de6a85b421
commit 5f9583bfae
4 changed files with 28 additions and 12 deletions

22
docroot/Makefile Normal file
View File

@@ -0,0 +1,22 @@
ROOT ?= $(PWD)
HTTP_PORT ?= 49448
PHP_FCGI_PORT ?= 49449
serve: nginx.conf
nginx -p $(ROOT)/ -c $(ROOT)/$<
serve-php:
php-cgi -b 127.0.0.1:$(PHP_FCGI_PORT)
nginx.conf: nginx.conf.in
cat $< | \
sed -e 's@__ROOT__@$(ROOT)@g' \
-e 's@__HTTP_PORT__@$(HTTP_PORT)@g' \
-e 's@__PHP_FCGI_PORT__@$(PHP_FCGI_PORT)@g' > $@
.PHONY: serve