You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
350 B

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