アカウント名:
パスワード:
より多くのコメントがこの議論にあるかもしれませんが、JavaScriptが有効ではない環境を使用している場合、クラシックなコメントシステム(D1)に設定を変更する必要があります。
※ただしPHPを除く -- あるAdmin
SunのCobalt (スコア:0)
大量被害の予感…
Re:SunのCobalt (スコア:0)
CobaltのFTPは何処? (スコア:0)
README に書かれている experimental ディレクトリが消えている…
Re:CobaltのFTPは何処? (スコア:1)
かと言って、RPMパッケージを自分で
Re:CobaltのFTPは何処? (スコア:1)
目的:
・本設定のために追加機材を使用しない。
・既存の Apache の設定は一切変更しない。
・作業に手間をかけない。
方針:
・外部からの 80/TCP への接続は 3128/TCP (Squid) にリダイレクト。
・3128/TCP で稼動する Squid を httpd-accelerator mode で動かす。
機材:
Cobalt RaQ3
インストールす
Re:CobaltのFTPは何処? (スコア:1)
先の squid.conf はテスト用設定で http_access allow all なんて
危険な設定が入ってるからリバースプロキシだけじゃなく、
オープンなプロキシとして動いてしまいます。
もうちょっとマシな設定はこれ。
acl の virtualdomain とか virtualhost は
環境に合わせて調整が必要です。
hierarchy_stoplist cgi-bin ?
acl QUERY urlpath_regex cgi-bin \?
no_cache deny QUERY
redirect_rewrites_host_header off
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl SSL_ports port 443 563
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 563 # https, snews
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT
acl virtualdomain dstdomain www.example.co.jp
acl virtualhost dst xxx.xxx.xxx.xxx
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow virtualdomain
http_access allow virtualhost
icp_access allow all
httpd_accel_host virtual
httpd_accel_uses_host_header on