タグ

ブックマーク / kotaroito.hatenablog.com (2)

  • Same Origin PolicyとCORSとCPS - kotaroito's notes

    一度きちんと整理しておきたし。 オリジンとは URLのscheme, host, portによって定義される。以下、いずれも違うオリジンになる。 http://example.com https://example.com http://sub.example.com http://example.com:8080 同一生成元ポリシー 英語で言うと、Same Origin Policy。 http://www.w3.org/Security/wiki/Same_Origin_Policy を読むと、いきなり"There is no single same-origin policy." と書かれている。。。が、一般原則はある。 https://developer.mozilla.org/ja/docs/Web/JavaScript/Same_origin_policy_for_JavaSc

    Same Origin PolicyとCORSとCPS - kotaroito's notes
    n2s
    n2s 2016/03/15
    CPSとかCORSを総称した単語がほしい。「HTTPセキュリティフレームワーク」はちょっと長くてなぁ。HSF?
  • 2010-10-19

    mod_fcgidとmod_fastcgiは別物という事実にショックを受けつつ、気を取り直してmod_fastcgiをインストールしてみる。 環境 OS: CentOS 5.4 Apache: 2.2.3 インストール 既にyumからapacheをinstallしているので、DSOでインストールする。 ちなみにDSOはDynamic Shared Objectの略で、実行時にLoadModuleディレクティブで読み込めるApacheモジュールのこと。そしてapxsはAPache eXtenSion toolのことである。 wget http://www.fastcgi.com/dist/mod_fastcgi-2.4.6.tar.gz tar zxfv mod_fastcgi-2.4.6.tar.gz cd mod_fastcgi-2.4.6 apache 1.3なら以下でOKらしいが、a

    2010-10-19
    n2s
    n2s 2011/05/27
    CGI, FastCGI(mod_fcgid, mod_fastcgi), PSGI
  • 1