#pragma section-numbers off [[TableOfContents]] = 概要 = http://ja.wikipedia.org/wiki/Nginx = 公式サイト = = 関連サイト = [https://www.nginx.com/products/nginx-unit/ NGINX Unit] = インストール = = 設定 = == HTML内のリンク書き変え == http://wiki.nginx.org/HttpSubModule を利用 コンパイル時に{{{--with-http_sub_module}}}を付加 {{{ location /xxxx/ { sub_filter \"/ '"/xxxx/'; sub_filter_once off; } }}} 標準の物はあまり複雑な事ができない。正規表現などを利用する場合は、[https://github.com/yaoweibin/ngx_http_substitutions_filter_module yaoweibin/ngx_http_substitutions_filter_module · GitHub]を利用する。 {{{ subs_filter_types text/html text/css; subs_filter \"/ '"/xxxx/'; }}} = buildout = * [http://pypi.python.org/pypi/gocept.nginx/ gocept.nginx 0.9.4 : Python Package Index] * [http://collective-docs.readthedocs.org/en/latest/hosting/nginx.html Nginx — Plone Developer Documentation] = 参考サイト = ---- CategoryServerConstruction