facebook twitter hatena line email

「Vps/xrea」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
 
行13: 行13:
 
</Limit>
 
</Limit>
 
</pre>
 
</pre>
==xreaの個別のbasic認証==
+
==xreaにサブドメ個別のbasic認証==
 
サーバ直下に.htpasswd_hogeを設置
 
サーバ直下に.htpasswd_hogeを設置
 
/public_html/hoge.example.shopのサブドメの下のdir以下の.htaccessに以下を記載
 
/public_html/hoge.example.shopのサブドメの下のdir以下の.htaccessに以下を記載

2022年11月30日 (水) 14:55時点における最新版

xreaのbasic認証

例:アカウント名:example、サブドメ:hoge サーバ直下に.htpasswdを設置 /public_html/hoge.example.shopのサブドメの下のdir以下の.htaccessに以下を記載

AuthUserFile /virtual/example/.htpasswd
AuthGroupFile /dev/null
AuthName MembersOnly
AuthType Basic

<Limit GET POST>
require valid-user
</Limit>

xreaにサブドメ個別のbasic認証

サーバ直下に.htpasswd_hogeを設置 /public_html/hoge.example.shopのサブドメの下のdir以下の.htaccessに以下を記載

AuthUserFile /virtual/example/.htpasswd_hoge
AuthGroupFile /dev/null
AuthName MembersOnly
AuthType Basic

<Limit GET POST>
require valid-user
</Limit>