私はmod_pagespeedを試してきましたが、実行中のドメインのリストに現在のすべての仮想ホストを自動的にhttpd.conf
追加するルールを追加する方法を誰かが知っているかどうか知りたいです:
ModPagepeedDomain http://vhost1.com
ModPagepeedDomain http://vhost2.com
ModPagepeedDomain http://vhost3.com
ありがとうございました。
私はmod_pagespeedを試してきましたが、実行中のドメインのリストに現在のすべての仮想ホストを自動的にhttpd.conf
追加するルールを追加する方法を誰かが知っているかどうか知りたいです:
ModPagepeedDomain http://vhost1.com
ModPagepeedDomain http://vhost2.com
ModPagepeedDomain http://vhost3.com
ありがとうございました。
ModPagespeedDomain
ワイルドカードを受け入れるようです。ここから:
# Wildcards (* and ?) are allowed in the domain specification. Be
# careful when using them as if you rewrite domains that do not
# send you traffic, then the site receiving the traffic will not
# know how to serve the rewritten content.
ModPagespeedDomain *
これを仮想ホストの外側の適切な conf ファイルに配置します。
はい、ワイルドカードを使用できますが、Web 全体を実際に制御できない限り、ModPagespeedDomain * を使用しないでください。
この宣言により、書き換えるリソースと書き換えないリソースが決定されます。パターンに一致するすべてのサーバーに mod_pagespeed がインストールされるという契約です。
次のようなものを使用してください:
ModPagespeedDomain vhost?.com
実際に、任意のドメインから書き換え可能な書き換えプロキシの背後にいる場合を除きます。
また、mod-pagespeed-discuss@googlegroups.com に連絡して、http: //code.google.com/p/modpagespeed/issues/list に問題をリストすることもできます。