内容へ移動
ClownWiki
ユーザ用ツール
ログイン
サイト用ツール
検索
ツール
文書の表示
以前のリビジョン
バックリンク
最近の変更
メディアマネージャー
サイトマップ
ログイン
>
最近の変更
メディアマネージャー
サイトマップ
トレース:
apache:configure
この文書は読取専用です。文書のソースを閲覧することは可能ですが、変更はできません。もし変更したい場合は管理者に連絡してください。
====== apache設定ファイル ====== ===== Sample Code ===== <code> # # WordPress # <Directory "/var/www/vhosts/wordpress/"> SSLRequireSSL Options None AllowOverride All Order Deny,Allow # Allow from all # Allow from 127.0.0.1 # Allow from 123.123.123.123 124.124.124.124 AuthName "WordPress Access" AuthType Basic AuthUserFile /var/www/vhosts/wordpress/htpasswd.users Require valid-user </Directory> Alias /wordpress/var/www/vhosts/wordpress </code> ===== 解説 ===== * SSLRequireSSL\\ httpsのみ接続を許可する * Options None * AllowOverride All\\ .htaccessを有効にする * AuthName "WordPress Access" * AuthType Basic * AuthUserFile /var/www/vhosts/wordpress/htpasswd.users * Require valid-user ===== パスワードファイル生成 ===== <code> # htpasswd -cm /var/www/vhosts/wordpress/htpasswd.users editor New password: ***** Re-type new password: ***** Adding password for user editor </code> <code> # less /var/www/vhosts/wordpress/htpasswd.users editor:$apr1$qwst8xCo$dmavjxuPRDsKc6785yINR/ </code>
apache/configure.txt
· 最終更新: 2025/02/16 13:53 by
127.0.0.1
ページ用ツール
文書の表示
以前のリビジョン
バックリンク
文書の先頭へ