-
Notifications
You must be signed in to change notification settings - Fork 21
/
config.php.default.ko
437 lines (423 loc) · 23.6 KB
/
config.php.default.ko
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
<?php
# @desc Default config file
#
$sitename='UnnamedWiki'; # 위키 사이트 이름
#$title_sitename='UnnamedWiki'; # 타이틀 태그의 사이트 이름
#$title_msgstr="%2\$s - %1\$s"; # 타이틀 지정에 사용될 msgstr
#$canonical_url='http://foo.bar.com/wiki.php/';
#$use_google_sitelinks=0; # google sitelinks 사용
#$use_description=0; # 자동 생성된 description 사용
#$twitter_id='@foobar'; # 트위터 ID 지정
#$base_keywords='Wiki, YourWikiName'; # 모든 위키 문서에 대한 기본 키워드 지정
$data_dir= './data'; # data 디렉토리
$upload_dir= 'pds'; # 업로드 디렉토리
#$site_headers= array('Status: 503 Service unavailable'); # 사이트 정비 등등의 이유로 사용할 헤더 지정
$text_dir= $data_dir.'/text'; # 페이지가 저장되는 디렉토리
$cache_dir= $data_dir.'/cache'; # 캐시가 저장되는 디렉토리
#$user_dir= $data_dir.'/user'; # 사용자가 저장되는 디렉토리
$intermap= $data_dir.'/intermap.txt'; # 기본 interwiki 맵이 정의된 파일
$editlog_name= $data_dir.'/editlog'; # 편집 로그가 기록될 파일
$shared_metadb= $data_dir."/metadb"; # metawiki DB가 저장될 파일
#$shared_metadb_type='compact'; # compact metadb type
#$shared_metadb_dbname=$data_dir."/title.db"; # metadb dbname
$shared_intermap= $data_dir."/text/InterMap"; # 공개적으로 편집 가능한 인터위키 맵
$url_prefix= '/moniwiki';
#$base_url_prefix='/w'; # base url 지정.
$imgs_dir= $url_prefix.'/imgs';
$logo_img= $imgs_dir.'/moniwiki-logo.png'; # 사이트 로고
$query_prefix= '/';
$css_url= $url_prefix.'/css/nlog.css'; # 기본 CSS (theme 설정시 무시됨)
$kbd_script= $url_prefix.'/css/kbd.js'; # 키보드 스크립트
$logo_string= '<img src="'.$logo_img.'" alt="" border="0" align="middle" />';
$use_smileys= 1; # 스마일리 사용여부
#$smiley='wikismiley'; # 스마일리 정의 파일. SmileyMap을 사용할 수도 있음
$use_counter= 0; # 페이지 카운터 사용여부
$use_fakemtime=0; # dir mtime emulation for FAT filesytem.
$use_hashed_upload_dir=0; # use hashed upload dir to upload files into many subdirs
$use_hostname=0; # 호스트이름 혹은 IP 사용 gethostbyaddr() 사용. 매우 느림
$use_htmlcolor=0; # html 컬러 문법 사용 {{{#ffcc33 blah blah}}}
$use_group=1; # 그룹 네임스페이스(~) 사용 여부
$mask_hostname=1; # IP주소의 일부 영역 가리기
#$site_local_php='config/local.php'; # 사이트의 로컬 php 파일 사용
$show_hosts=0; # 익명 사용자에 대해서 IP주소 혹은 호스트 이름 보이기
$edit_rows=16; # 편집창 줄 수 크기
#$editform=$data_dir.'/editform.txt'; # 사용자 지정 편집 폼
$iconset= 'moni2'; # 아이콘 세트 moni, moni2
$inline_latex=0; # 인라인 latex 사용 (기본값)
#$inline_latex='mimetex'; # 인라인 latex 사용 (기본값)
#$mimetex_path='/cgi-bin/mimetex.cgi'; # 명령행 라인 모드의 경우
#$mimetex_path='shell:mimetex'; # 명령행 라인 모드의 경우
#$mimetex_path='shell:/usr/bin/mimetex'; # 명령행 라인 모드의 경우
#$inline_latex='latex'; # 인라인 latex 사용 (기본값)
#$inline_latex='itex'; # 인라인 latex 사용 (기본값)
#$inline_latex='1'; # 인라인 latex 사용 (기본값)
#$latex_convert_options='-crop 0x0 -density 120x120'; # change convert options for the latex processor
#$latex_renumbering=1; # tex 수식 번호 재지정
#$latex_allinone=1; # experimental. 텍을 하나의 파일로 만들어 한번에 랜더링함
#$use_default_mathml_style=1; # mathml 기본 글꼴 스타일 사용
$lang='auto'; # 기본 언어 (자동) 혹은 ko, ko_KR, en, en_US 등등
#$default_lang='ko'; # default language
$charset='utf-8'; # 기본 문자셋. euc-kr etc.
$auto_linebreak= 0; # 노스모크식 자동 강제 개행
#$html_nl2br=0; # use nl2br() in plugin/processor/html.php
$trail= 1; # use trailer (navagation list of some recently visited pages)
#$origin=1; # show upper pages like as Language/Script/Perl => Language > Script > Perl
#$arrow=' <img src="/wiki/imgs/moni-arrow.gif"/> ';
$notify= 0; # enable email notification
#$use_sendmail=0; # use sendmail
#$sendmail_path='/usr/sbin/sendmail -i -t -fnoreply'; # sendmail binary path
#$replyto="[email protected]"; # replyto return email address
#$email_header=$data_dir.'/email-header.txt'; # email header
#$email_footer=$data_dir.'/email-footer.txt'; # email footer
#$email_register_header=$data_dir.'/email-register.txt'; # email header for new registered user
#$anonymous_friendly=1; # make anonymous friendly wiki
#$anonymous_no_full_edit_permission=1; # restrict edit actions (rename,revert,save,delete) against anonymous
$anomymous_allow_create_without_backlink=1; # allow anonymous users to create pages without any backlinks
#$allowed_max_lines_delete_ratio=0.5; # the maximum ratio of lines allowed to delete
#$allowed_max_chars_delete=180; # the maximum number of chars allowed to delete
#$allowed_max_chars_add=300; # the maximum number of chars allowed to add
#$user_suspend_time_default=60*30; # minimum temporary suspend time
#$use_anonymous_editcount=0; # use anonymous editcount to save IP information for anonymous users
#$no_full_edit_permission=1; # restrict edit actions against all users
#$use_abusefilter=1; # use abusefilter
#$no_abusefilter_groups=array('@staff','@gardener','@tester'); # do not use abusefilter for this groups
#$block_actions= array('savepage', 'deletepage', 'reverse', 'revert', 'info', 'diff', 'recall'); # check for blacklist
#$edit_actions= array('savepage', 'deletepage', 'reverse', 'revert'); # for blacklist filtering
#$use_dynamic_blacklist=0; # use dynamic blacklist feature
$use_referer= 0; # use some basic referer feature.
$use_sistersites=1; # use sistersites/siterwiki feature.
#$use_singlebracket=1; #
$use_twinpages=1;
$use_trackback=0;
$vim_options='+"set expandtab" +"retab"'; # expand tabs in the Vim 6.x
#$vim_options='+"set expandtab" +"retab" +"let g:html_use_css=0"'; # with vim7.1 but hang... why ? :(
#$vim_options='+"set encoding=UTF-8"'; # for UTF-8 wikis
$pds_allowed="png|jpg|jpeg|gif|mp3|zip|tgz|gz|txt|css|exe|hwp|pdf|flv"; # some allowed file extension to upload.
$nonexists='fancy'; # fancy link
#$nonexists='nolink'; # do not link non exists pages
#$nonexists='forcelink'; # link always
#$use_titlecache=0;
#$use_titlemenu=1; # add the current pagename to the menu list
#$security_class="needtologin";
#$security_class="desktop";
#$security_class="wikimaster";
#$security_class="community";
#$wikimasters=array('CsKim','SjPark');
#$owners=array('moniwiki','Hong');
#$members=array('tester0','tester1'); # internal staff,member, etc.
$menu=array('FrontPage'=>1,'FindPage'=>4,'TitleIndex'=>3,'RecentChanges'=>2,'UserPreferences'=>'');
#$menu=array('MoniWiki'=>1,'FindPage'=>4,'TitleIndex'=>3,'BlogChanges'=>'','RecentChanges'=>2,'http://kldp.org KLDP'=>9);
#$menu_sep='|'; # obsolute
#$menu_bra=''; # obsolute
#$menu_cat=''; # obsolut
#$path='/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin'; # for unixes
#$path='./bin;c:/windows/command;c:/Program Files/gnuplot;c:/Program Files/vim/vim71'; # for win32
#$path='./bin;C:/Program Files/MiKTeX 2.5/miktex/bin;C:/Program Files/ImageMagick-6.3.6-Q16'; # for MikTeX
# ./bin to use user installed bins.
$theme='paper'; # set the theme
$theme_css=0; # change css of theme or not
#$custom_css='local/custom.css.php'; # custom css
#$mobile_theme='default'; # set the theme of mobile
#$mobile_menu=array('MoniWiki'=>1,'RecentChanges'=>2); # shorter menu for mobile
$hr=''; # obsolute
#$title_rule='((?<=[a-z0-9])[A-Z][a-z0-9])'; #
#$blog_comments=1; # show all comments of a blog entry
#$date_fmt='Y-m-d';
#$date_fmt_rc='Y-m-d';
#$date_fmt_blog='Y-m-d';
#$no_ogp=1; # do not use ogp metadata
#$sistermap=$data_dir.'/sistermap.txt';
$metatags=<<<META
<meta name='viewport' content='width=device-width' />
<meta name="robots" content="noindex,nofollow" />
<link rel="Start" href="FrontPage" />
<link rel="Index" href="TitleIndex" />
<link rel="Help" href="HelpOnFormatting" />
<link rel="Copyright" href="FrontPage" />
<link rel="Search" href="FindPage" />
<link rel="Glossary" href="WordIndex" />
<link rel="Alternate History" title="Page History" href="?action=info" />
<link rel="Alternate" title="xml" type="application/rss+xml" href="?action=rss_rc" />
<link rel="Alternate" title="Wiki Markup" type="text/plain" href="?action=raw" />
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
META;
$metatags_extra="<meta name='viewport' content='width=device-width' />";
# set global javascripts (lowlevel)
#$js=<<<EOF
#<script type="text/javascript" src="$url_prefix/local/ajax.js"></script>
#<script type="text/javascript" src="$url_prefix/local/se.js"></script>
#<script type="text/javascript" src="$url_prefix/local/Wikiwyg/lib/Wikiwyg.js"></script>
#<script type="text/javascript" src="$url_prefix/local/Wikiwyg/lib/Wikiwyg/Util.js"></script>
#<script type="text/javascript" src="$url_prefix/local/Wikiwyg/lib/Wikiwyg/Toolbar.js"></script>
#<script type="text/javascript" src="$url_prefix/local/Wikiwyg/lib/Wikiwyg/Wikitext.js"></script>
#<script type="text/javascript" src="$url_prefix/local/Wikiwyg/lib/Wikiwyg/Preview.js"></script>
#<script type="text/javascript" src="$url_prefix/local/Wikiwyg/lib/Wikiwyg/HTML.js"></script>
#<script type="text/javascript" src="$url_prefix/local/Wikiwyg/lib/Wikiwyg/Wysiwyg.js"></script>
#<script type="text/javascript" src="$url_prefix/local/moniwyg.js"></script>
#
#<script type="text/javascript" src="$url_prefix/local/lightbox2/js/lightbox.js"></script>
#<link rel="stylesheet" href="$url_prefix/local/lightbox2/css/lightbox.css" type="text/css" media="screen" />
#<script type="text/javascript" src="$url_prefix/local/autocomplete.js"></script>
#<script type="text/javascript" src="$url_prefix/local/subindex.js"></script>
#EOF;
# alternatively you can use the $javascripts option (more inteligent method)
$javascripts=array(
'<script defer src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>',
'<script defer src="//ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>',
'defer,js/i18n.js',
'defer,pasta.js',
'async,ajax.js',
'defer,ac.js',
'defer,footnotes.js',
#'defer,autosave.js',
#'defer,mobile.js',
#'defer,folding.js',
#'defer,googlehi.js',
);
#$diffonly=1; # show only diff infos (do not show wiki contents)
#$goto_type=1;
#$purple_icon=''; # obsolute
#$use_purple=''; # obsolute
$perma_icon='¶';
#$perma_icon='<img src="/wiki/imgs/egg.png" border="0" />';
#$pagetype=array("KldpDsl"=>"plain","ManPage"=>"/man","DocbookSgml"=>"/jade","LinuxDoc"=>"/linuxdoc");
# set default processor for jade
#$default_dsssl='to_dir/kldp.dsl#html';
#$docbook_xmldcl='to_dir/xml.dcl'; # utf-8 support for jade
#$password_length=6;
#$use_convert_thumbs=0; # for GalleryMacro
#$use_thumb_by_default=0; # show thumbnails by default
#$no_gif_thumbnails=0; # do not use thumbnaisl for GIFs
#$use_thumb_with_download_link=0; # use download link
$myprocessors=array('syntax'=>'vim','sh'=>'vim','csh'=>'vim',
'c'=>'vim','cpp'=>'vim','perl'=>'vim','lisp'=>'vim',
'asm'=>'vim','masm'=>'vim','make'=>'vim',
'java'=>'vim','ruby'=>'vim','haskell'=>'vim',
'awk'=>'vim','nosyntax'=>'vim','make'=>'vim',
'jade'=>false, 'linuxdoc'=>false, 'gnuplot'=>false, 'octave'=>false,
'latex'=>false,
);
#$myprocessors=array('latex'=>'mimetex');
#$myplugins=array('fullsearch'=>'FastSearch'); # substitute action/macro
#$myplugins=array('TOC'=>'TableOfContents'); # alias action/macro
#$myplugins=array('swfupload'=>false); # disable some macro
$myplugins=array('rcsexport'=>false, 'swfupload'=>'jsupload'); # disable rcsexport, replace swfupload
#
#$extra_macros=array('FootNote', 'Comment'); # call some extra macros after send_page()
#$url_schemas='mms';
#$delete_history=1;
#$stat_no_show_all=0; # do not show all users statistics info.
#$stat_no_merge_ip_users=0; # do not merge ip users contributions.
#$editlogbin_datetime_oldest='-1 year'; # oldest datetime
#$editlogbin_datetime_max_range='1 year'; # max time range
#$rename_with_history=1; # rename with history
#$use_twikilink=1;
#$timezone='KST'; // for windows
#$version_class='RcsLite';
#$rcs_check_broken=1; // check rcs file is broken or not
#$rcs_always_unlock=0; // always unlock rcs files to fix $rcs_user problem
#$use_numbering=1; // for the vim processor
#$vim_nocheck=0; // do not check vim syntax.
$use_resizer=2; # 1:javascript resizer, 2: drupal style resizer
#$use_minoredit=1; // only for wiki owners
#$use_autodetect_minoredit=0; // auto detect minoredit
$use_edit_placeholder=1; # use placeholder in the main edit form
$auto_search='AutoGoto'; # FixMoin: for old moinmoin users, AutoGoto: default.
#$hr_type='fancy';
$use_wikiwyg=0; # 1 for GUI button/ 2 to set as default behavior/ 3 to set always use GUI.
#$wikiwyg_confirm=1; # always confirm
$use_sectionedit=0;
#$wikihints_page= 'HelpContents'; # default help page.
#$source_site='http://the.original.net/'; # the original source site to support mirror.
#$sectionedit_attr=1; # enable wikiwyg section editing
$spam_filter='antispam';
#$badcontents='config/badcontents.txt.php';
#$spam_comment_filter='antispam'; # spam filter for comments
#$comment_badcontents='config/badcomments.txt.php'; # badcontents for comments
$toc_options='simple,toggle';
#$toc_options='title=Contents,toggle,simple';
#$use_ticket=1; # use ticket image to block spam bots.
#$use_captcha=1; # a alias of the $use_ticket
#$ticket_gdfont=5; # use a builtin gd bitmap font
#$gdfontpath='./data';
#$ticket_font='TTFONT';
#$ticket_font='PeignotNum';
#$ticket_font_size='20';
$local_abbr='LocalDictionary';
#$postfilters='abbr'; # abbr: abbrevation filter.
$use_forcemerge=1;
$default_language='ko';
$use_alias=1;
$aliaspage=$data_dir.'/text/AliasPageNames';
$use_easyalias=1; # direct linking to the dest page
$css_friendly=1;
#$css_friendly=1; # for more CSS friendly support
$use_redirect_msg=0;
#$use_redirect_msg=1; # for MoinMoin compatible
#$redirect_urls='moniwiki|google'; # protect #redirect URL method
#$use_safelogin=0;
#$use_ssl_login=0; # use https:// login url
$url_mappings=array('http://faq.ktug.or.kr/mywiki'=>'http://faq.ktug.or.kr/faq');
$shared_url_mappings='';
#$shared_url_mappings=$data_dir.'/text/UrlMap'; # enable builtin fix url
#$trtags=array("{{|\n"=>"{{{#!wiki .closure\n",'{{|'=>"{{{#!wiki .closure\n", '|}}'=>'}}}'); # translate old wiki markups
#$external_target='_blank'; # always open new windows with external URLs
#$use_textbrowsers=1; # check some textbased browsers
$use_preview_uploads=1;
#$use_camelcase=0; # turn off camelcase syntax by default
#$mediawiki_style=0; # 0: wikiCreole style [[foo bar]]=>[[FooBar]], 1: mediawiki style preserve white spaces
#$markdown_style=0; # markdown friendly table align etc.
#$use_category=0; # on/off categories list in the edit mode
#$use_builtin_category=1; # on/off builtin category support
#$category_regex=urldecode('%EB%B6%84%EB%A5%98$'); # a category example for Korean
#$default_fullsearch='?action=myfullsearch&value='; # fullsearch action for the title link
#$backlinks_follow=0; # set rel="follow" for the title link
#$use_keywords=0; # 키워드 사용
#$use_tagging=0; # 키워드 태깅기능 사용
#$use_tagging='[http://?action=keywords&all=1 Tags]: [[Keywords]]'; # 페이지 하단에 키워드 리스트 보여주기
$use_backlinks=1; # set default fullsearch behavior as backlinks search
$use_backlink_search=1; # use backlink searching
#$use_redirects_as_keywords=1; # use redirects as keywords
$fullsearch_tooshort=2; #
#$use_smartdiff=1; # use the experimental smart diff XXX
#$hide_actions=0; # hide actions list for anonymous user
#$actions= array('DeletePage','LikePages','?action=Keywords Add keywords'); # customized act list
#$menu_actions= array('?action=backlinks BackLinks'); # customized actions for main menu
#$info_options='ago,simple'; # default Info macro options
#$info_actions=array('raw'=>'source');
#$info_actions=array('raw'=>'source','diff'=>'diff');
#$info_anonymous_range_limit=20; # restrict version range for anonymous users
#$info_range_max=30; # maximun version range in one page
#$force_charset=1; # overriding default charset
#$submenu='SubMenu'; # dynamic submenu
#$submenu_showmain=1;
#$shared_smileymap=$data_dir.'/text/SmileyMap'; # customizable smileymap
#$use_clipmacro=1; # use the clip macro with the attachment macro
$use_errlog=1;
#$errlog_maxline=20; # max lines to show
#$raw_errlog=0; # do not hide some dir. infos.
#$acl_type='default'; # XXX
#$acl_debug=1;
#$acl_admin_groups=array('@staff', '@admin'); # ACL admin groups
#$acl_specialpages=array('User:%ID%'); # special pages used by acl security plugin
#$aclinfo_actions= array('edit', 'savepage', 'deletepage', 'info', 'diff', 'revert', 'recall'); # editable actions
#$check_editable=0; # check editable pages and show lock icon.
#$default_download_image='/block.jpg';
#$force_download=1;
#$download_action='download';
$use_resume_download=1;
#$control_read=1; # control read action also
#$use_macro_as_action=0; # XXX warn
#$isbn_img_download=1; # download isbn images to local cache dir.
#$use_clipmacro=1; # use clip applet with AttachmentMacro
#$no_register=1; # do not allow to register anymore
#$register_confirm_email=0; # register ID after email confirmed
#$register_confirm_admin=0; # ID must be activated by admin
#$use_agreement=1; # show agreement form in UserPreference
#$contributor_license_agreement='Agree to contributor license agreement'; # short contributor license agreement msgs
#$irrevocable_contribution_agreement='Irrevocable contribution agreement'; # irrevocable contribution agreement for anonymous doner
#$agreement_page='data/agreement.txt';
#$agreement_version=1; # join agreement version
#$no_wikihomepage=1; # do not use the wiki homepage for users
#$dot_fontsize=10; # dot font size for the VisualTour
#$dot_fontname='Eunjin'; # webdot font name for graphviz 2.2.x
#$dot_fontname='WEBDOTFONT'; # webdot fontname fot graphviz 1.8.x
#$dot_options="size \"6,6\"\n"; # extra webdot options
$preview_no_xss_protection=0; # enable X-XSS-Protection: 0
#$no_xss_filter=0; # do not filter XSS
#$xss_allowed_embed_urls='niconico'; # some allowed embeded urls
$use_save_refresh=2;
#$use_savepage_hash=1; # use savepage hash to check valid action
$use_refresh=2;
#$savepage_timeout=10; # savepage timeout
#$log_deletion=0; # log deleted info to the history
$cachetime=0;
#$cachetime=60*60*5; # set cachetime for caching
#$use_conditional_get=1; # use conditional get for static pages
#$no_must_revalidate=1; # do not use must-revalidate cache control
#$proxy_maxage=1; # maxage in seconds for shared caches
#$user_maxage=5; # maxage in seconds
#$nosession=1; # do not use session
#$session_lifetime=60*60*24; # 세션 라이프타임
#$cookie_expires=60*60*24*30; // default 30 days
#$cookie_domain='.foobar.com'; // set cookie domain
#$cookie_path='/'; // set cookie path
#$access_control_allowed_re='@foobar.com@'; // control Access-Control-Allow-Origin header
$dynamic_macros=array('pagecount'=>1, 'recentchanges'=>1,'userpreferences'=>1,
'uploadedfiles'=>1,'JSUpload'=>1, 'Vote'=>1,
'login'=>1,'minilogin'=>1,'scrap'=>1, 'subscribe'=>1, 'fortune'=>1);
$cache_public_dir='./_cache'; # enhanced caching
$cache_public_url=$url_prefix.'/_cache';
#$no_404=1; # for IIS
#$nofancy_404=1; # simplified 404 msg for robots etc.
#$toolbar_iconset='mediawiki'; # change the toolbar iconset
#$use_lightbox=1;
#$gallery_use_lightbox=1;
#$use_hangul_search=1; # use hangul search for auto-completer
#$use_subindex=1; # 하위 페이지 인덱스 사용
#$use_ajax_subindex=1; # ajax를사용한 하위 페이지 인덱스
#$default_pre='pre'; # set the default pre processor
#$default_markup='monimarkup'; # set the default markup processor
#$use_rating=1; # builtin Rating support
#$myupload='swfupload';
#$myupload_depth=2; # uploader depth for future use
#$media_url_mode=1; # media url mode for Play/Media macro
#$icon_list='edit,diff,show,find,print,info,help,pref,rss'; # set the icon list
#$use_folding=0; # 1:default simple js / 2:with the prototype/mootools
#$use_openid=0; # enable openid login
#$check_openid_url=0; # selectivly show openid icons: experimental
#$use_autosave=1; # enable autosave feature.
#$delayindex=60*60*24*5; # delayed indexing
$mobile_agents='android|iphone'; # mobile agents
#$fetch_max_size=2*1024*1024; # 모바일 위키등을 위해 fetch할 최대 파일 크기. 좀 더 자세한 사항은 plugin/fetch.php 참고.
#$fetch_images_only=0; # 이미지 파일만 가져오도록 강제 지정
#$fetch_action=''; # 특정 액션을 통한 이미지 fetch (기본값은 모니위키 내장 액션: ?action=fetch&url=)
#$fetch_referer='https://to_other_referrer_site'; # fetch 레퍼럴 지정
#$fetch_referer_re=array('@(http://.*\.egloos.com)/p../@'=>'http://egloos.com','@(http://.*.clien.)@'=>''); # 사이트에 대응하는 fetch 레퍼럴 지정
#$fetch_ignore_re='.*'; # 무시할 fetch url주소 정규식. .*를 쓰면 fetch는 안쓰임.
#$fetch_use_cache_url=1; # 사용자 정의된 fetch_action으로 redirect시킴.
$fortune_dir='data/fortune'; # 포춘 쿠키 데이터 디렉토리 '/usr/share/games/fortunes'
#$external_image_lazyload=1; # lazyload external images
#$external_image_regex='(https?://upload\.wikimedia\.org/wikipedia/commons/.*\.(?:jpe?g|png|gif)$)'; # call ExternalImage macro for these sites
#$proxy_host='proxy.foobar.com'; # proxy host
#$proxy_port='3128'; # proxy port
#$security_class_robot='robot';
#$url_encodings='euc-kr,uhc'; # autogoto option: search invalid urls with different encodings
#$use_scrap=1; # use scrap
#$use_scrap='js'; # use scrap with javascript
#$login_strict=0; # strict check
#$use_userlink=0; # replace the UserPreference link to the UserHomePage
#$use_userpage=1; # link user's page to the 'User:foobar' interwiki in the RecentChanges
$use_local_translation=0; # automatic translation
#$use_jsbuttons=0; # use javascript fake buttons.
#$use_jspacker=0; # use javascript packer
#$use_namespace=0; # support dokuwiki like namespace
#$rc_strimwidth=20; # witdh param of mb_strimwidth() with the RecentChanges macro
#$titleindexer_class='PageIndex'; # user defined titleindexer class
#$mysql_host='localhost';
#$mysql_user='moniwiki';
#$mysql_passwd='';
#$mysql_dbname='moniwiki';
#$config_mysql='default'; # or use mysql config separatly. config/mysql.default.php used
#$pagekey_class='compat'; # base64url: base64url 페이지키, compat: 기존 pagekey 클래스, utf8fs: utf8 페이지키
#$use_x_forwarded_for=0; # use X-Forwarded-For header information to log all pass-by addresses
#$use_cloudeflare=0; # use CF_CONNECTION_IP to set the real remote IP address
#$pages_limit=5000; # maximum number of pages to retrieve by default to reduce server load.
#$rcsexport_limit=100; # limit maximum number of rcs revisions to rcsexport
#$titlesearch_page_limit=100; # maximum number of pages to search titleindex
#$default_delaytime= 60*60*24; # set the default delayed time for caching as 24 hours
#$use_avatar='identicon'; # set avatar imgs based on user IP address for anonymous users. default: identicon
#$use_admin_user_url='?action=userinfo&q='; # user admin url for staff members
#$use_uniq_avatar=1; # use uniq avatar for same IP address. number or date format string like as 'Ymd'
#$titlesearch_noexact=0; # do not search exact page name and get all titlesearch results
#$titlesearch_exact_all=0; # get all exact matches
#$titlesearch_noredirect=0; # do not redirect to the only one founded page except exact match.
#$use_similar_text=0; # use similar_text() function (in likepages action)
#$no_all_titleindex= 1; # do not support action=titleindex to reduce traffic
#$titleindex_ttl=60*60*24; # titleindex ttl
#$sitemap_ttl=60*60*24*7; # sitemap ttl
#$rss_rc_ttl=60; # rss_rc ttl
#$use_google_ads=0; // support google ads macro in the middle of content
#$google_ads_random=1; // randomly show ads
#$google_ads[0]=array('ad_client'=>'ca-pub-0000000000000000', 'ad_slot'=>'0000000000', 'width'=>320, 'height'=>100);
#$google_ads[1]=array('ad_client'=>'ca-pub-0000000000000000', 'ad_slot'=>'0000000000');