0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Apache 2.4 で特定のユーザーエージェントのみアクセスを許可する

Last updated at Posted at 2022-09-16

アプリ内のWebViewで表示するサイトに、容易にアプリ外からアクセスできないようにするために対策が必要だったので下記のような設定を行った

  DirectoryIndex index.html

  <Directory /usr/local/www/myapp.jp/unknown>
    AllowOverride None
    Require all granted
  </Directory>
  Alias /.unknown.html /usr/local/www/myapp.jp/unknown/unknown.html

  <Directory /usr/local/www/myapp.jp/htdocs>
    AllowOverride All
    SetEnvIf User-Agent MyappUserAgent myapp
    Require env myapp
    FallbackResource /index.html
    ErrorDocument 403 /.unknown.html
  </Directory>

なお、この対策は簡易的ものでセキュリティ対策ではない

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?