シンプルだけど私には合わない…
私の Ubuntu ホストには、ポート 8080 でリッスンする Geoserver インスタンスがあります。
http://<hostname>:8080/geoserver
私が達成したいのは、クライアントがエイリアスを介して Geoserver に到達できるようにすることです。
http://<hostname>/geoserver
PHP5 経由で行う必要があります (Apache のトリックは使用しません)。
必要なのは HTTP PHP プロキシだと思います。
例:
#Client asks for http://<hostname>/geoserver/wms?param1=x¶m2=y¶m3=z&...
#Proxy intercepts the request
#Proxy asks for http://<hostname>:8080/geoserver/wms?param1=x¶m2=y¶m3=z&... (with the same headers and body of the client's original request)
#Geoserver sends response to the Proxy
#Proxy forwards the response - as is - to the client
この問題を解決するための簡単なPHP ライブラリ/ソリューションを知っている人はいますか? 多くの解決策が存在しますが、これまでのところ単純なものを見つけることができませんでした
ありがとうございました