Dokuwiki のインストールと初期設定に関する覚書です。 バージョンは 2023-04-04a “Jack Jackrum” です。
1. DokuWIki Webサイト にいき DokuWiki をダウンロードする。
2. いくつかダウンロードオプションを問われるので適切なものを選択し、Download ボタンを押す。
項目 | 説明 |
---|---|
Version | ダウンロードするバージョンの選択。通常利用なので Stable を選択。 |
Update | 前回の Stable 版からの差分ファイルのみ取得するか。新規インストールなので off を選択。 |
Include Web-Server | MicroApache を含めるか。Webサーバーはレンタルサーバーにインストールされているものを使うので off。 |
Languages | 使用言語パックの選択。「ja - 日本語」を選択。en、ja 以外は不要なのでOFF。 |
Popular Plugins | ダウンロードに含めるプラグイン。「Upgarade Plugin」「Wrap Plugin」だけチェックした。 |
3. DokuWiki のダウンロードが完了したら、ダウンロードしたファイルを解凍し、Webサーバーの公開フォルダーにアップロードする。
公開フォルダー直下にアップロードするか、間にサブフォルダーを設けるかどうかは都合にあわせて。
4. ブラウザで「install.php」にアクセスする。
(公開フォルダー直下へアップロードしたのであれば URL は http://ドメイン名/install.php)
5. 使用言語を ja(日本語)に変更する
6. 各項目を入力し「保存」ボタンを押す。
7. インストール完了。「install.php」を削除する。
1. 「管理者メニュー」→「サイト設定」で下記の設定項目を変更した。
設定項目 | 説明 |
---|---|
表示:youarehere | 現在位置を表示。「on」に変更。 |
表示:useheading | 最初の見出しをページ名とする。「常に使用する」に変更。 |
スパム対策:relnofollow | 外部リンクにrel=“ugc nofollow”を付加しないよう「off」に変更。 |
スパム対策:indexdelay | インデックスを許可を「0」秒後に変更。 |
リンク:interwiki | 「_blank」に変更。 |
リンク:extern | 「_blank」に変更。 |
リンク:media | 「_blank」に変更。 |
リンク:windows | 「_blank」に変更。 |
RSS:sitemap | Googleサイトマップ作成頻度を「1」日に変更。 |
RSS:rss_type | XMLフィード形式を「Atom 1.0」に変更。 |
RSS:rss_linkto | XMLフィード内リンク先を「現在のページ」に変更。 |
RSS:rss_media | XMLフィードで、どんな種類の変更を記載するかを「ページ」に変更。 |
RSS:rss_show_summary | XMLフィードのタイトルに概要を表示を「off」に変更。 |
RSS:rss_show_deleted | 削除されたフィードを含めるを「off」に変更。 |
高度な設定:userewrite | URLの書き換えを「.htaccess」で行うように変更。 |
高度な設定:useslash | URL上の名前空間の区切りにスラッシュを使用を「on」。 |
ネットワーク:jquerycdn | 「CDN: code.jquery.com を使用」を指定。 |
2. DokuWiki のフォルダーに「.htaccess」をつくり、下記の内容を追記する。
## You should disable Indexes and MultiViews either here or in the ## global config. Symlinks maybe needed for URL rewriting. #Options -Indexes -MultiViews +FollowSymLinks Options -Indexes -MultiViews ## make sure nobody gets the htaccess, README, COPYING or VERSION files <Files ~ "^([\._]ht|README$|VERSION$|COPYING$)"> <IfModule mod_authz_core.c> Require all denied </IfModule> <IfModule !mod_authz_core.c> Order allow,deny Deny from all </IfModule> </Files> ## Don't allow access to git directories <IfModule alias_module> RedirectMatch 404 /\.git </IfModule> ## Uncomment these rules if you want to have nice URLs using ## $conf['userewrite'] = 1 - not needed for rewrite mode 2 RewriteEngine on RewriteRule ^_media/(.*) lib/exe/fetch.php?media=$1 [QSA,L] RewriteRule ^_detail/(.*) lib/exe/detail.php?media=$1 [QSA,L] RewriteRule ^_export/([^/]+)/(.*) doku.php?do=export_$1&id=$2 [QSA,L] RewriteRule ^$ doku.php [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule (.*) doku.php?id=$1 [QSA,L] RewriteRule ^index.php$ doku.php ## Not all installations will require the following line. If you do, ## change "/dokuwiki" to the path to your dokuwiki directory relative ## to your document root. #RewriteBase /dokuwiki # ## If you enable DokuWikis XML-RPC interface, you should consider to ## restrict access to it over HTTPS only! Uncomment the following two ## rules if your server setup allows HTTPS. #RewriteCond %{HTTPS} !=on #RewriteRule ^lib/exe/xmlrpc.php$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R=301] RewriteCond %{HTTPS} !=on RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]