mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
ae638eee94
Utilize %%ETCDIR%%. <ChangeLog> *) Feature: the "open_file_cache", "open_file_cache_retest", and "open_file_cache_errors" directives. *) Bugfix: socket leak; bug appeared in 0.6.7. *) Bugfix: a charset set by the "charset" directive was not appended to the "Content-Type" header set by $r->send_http_header(). *) Bugfix: a segmentation fault might occur in worker process if /dev/poll method was used. </ChangeLog>
25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
@comment $FreeBSD$
|
|
%%ETCDIR%%/fastcgi_params
|
|
%%ETCDIR%%/koi-utf
|
|
%%ETCDIR%%/koi-win
|
|
%%ETCDIR%%/win-utf
|
|
@unexec if cmp -s %D/%%ETCDIR%%/mime.types-dist %D/%%ETCDIR%%/mime.types; then rm -f %D/%%ETCDIR%%/mime.types; fi
|
|
%%ETCDIR%%/mime.types-dist
|
|
@exec if [ ! -f %D/%%ETCDIR%%/mime.types ] ; then cp -p %D/%F %B/mime.types; fi
|
|
@unexec if cmp -s %D/%%ETCDIR%%/nginx.conf-dist %D/%%ETCDIR%%/nginx.conf; then rm -f %D/%%ETCDIR%%/nginx.conf; fi
|
|
%%ETCDIR%%/nginx.conf-dist
|
|
@exec if [ ! -f %D/%%ETCDIR%%/nginx.conf ] ; then cp -p %D/%F %B/nginx.conf; fi
|
|
@dirrmtry %%ETCDIR%%
|
|
%%WWWDATA%%@exec mkdir -p -m 755 www/nginx-dist
|
|
%%WWWDATA%%@exec if [ ! -d %D/www/nginx/ ] ; then ln -fs %D/www/nginx-dist %D/www/nginx; fi
|
|
%%WWWDATA%%www/nginx-dist/EXAMPLE_DIRECTORY-DONT_ADD_OR_TOUCH_ANYTHING
|
|
%%WWWDATA%%www/nginx-dist/index.html
|
|
%%WWWDATA%%www/nginx-dist/50x.html
|
|
%%WWWDATA%%@exec chmod a-w www/nginx-dist
|
|
%%WWWDATA%%@unexec if [ -L %D/www/nginx ]; then rm -f %D/www/nginx; fi
|
|
%%WWWDATA%%@dirrmtry www/nginx-dist
|
|
sbin/nginx
|
|
@exec [ -d %%NGINX_TMPDIR%% ] || mkdir -p %%NGINX_TMPDIR%%
|
|
@exec chown %%WWWOWN%%:%%WWWGRP%% %%NGINX_TMPDIR%%
|
|
@unexec rm -fr %%NGINX_TMPDIR%%
|