/etc/ikiwiki-hosting/autosetup/auto-blog.setup is in ikiwiki-hosting-web 0.20170622ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/perl
# Ikiwiki setup automator -- blog version.
#
# This setup file causes ikiwiki to create a blog, check it into revision
# control, generate a setup file for the new blog, and set everything up.
#
# This is modified to run noninteractively; configuration
# is passed in via the environment.
#
# BTW, when you change something in this file, you probably will also want to
# use `ikisite changesetup` to make the same change to existing, running
# sites. The configuration part of the file is written using YAML to ease
# doing so.
use IkiWiki::Setup::HostingAutomator(<<'EOF');
---
force_overwrite: 1
setuptype: Yaml
wikiname: '$ENV{IKIWIKI_WIKINAME}'
adminuser:
- '$ENV{IKIWIKI_ADMIN}'
adminemail: '$ENV{IKIWIKI_ADMINEMAIL}'
owner: '$ENV{IKIWIKI_OWNER}'
created: '$ENV{IKIWIKI_CREATED}'
hostname: '$ENV{IKIWIKI_HOSTNAME}'
rcs: '$ENV{IKIWIKI_VCS}'
libdir: '$ENV{HOME}/.ikiwiki'
srcdir: '$ENV{IKIWIKI_SRCDIR}'
repository: '$ENV{IKIWIKI_REPOSITORY}'
destdir: '$ENV{IKIWIKI_DESTDIR}'
dumpsetup: '$ENV{HOME}/ikiwiki.setup'
url: 'http://$ENV{IKIWIKI_HOSTNAME}'
cgiurl: 'http://$ENV{IKIWIKI_HOSTNAME}/ikiwiki.cgi'
historyurl: 'http://source.$ENV{IKIWIKI_HOSTNAME}/?p=source.git;a=history;f=[[file]];hb=HEAD'
diffurl: 'http://source.$ENV{IKIWIKI_HOSTNAME}/?p=source.git;a=blobdiff;f=[[file]];h=[[sha1_to]];hp=[[sha1_from]];hb=[[sha1_commit]];hpb=[[sha1_parent]]'
cgi_wrapper: '$ENV{IKIWIKI_CGIDIR}/ikiwiki.cgi'
openid_realm: '$ENV{IKIWIKI_OPENID_REALM}'
openid_cgiurl: 'http://$ENV{IKIWIKI_HOSTNAME}/ikiwiki.cgi'
add_plugins:
- goodstuff
- websetup
- lockedit
- 404
- comments
- blogspam
- calendar
- sidebar
- ikiwikihosting
- recentchangesdiff
rss: 1
atom: 1
syslog: 1
hardlink: 1
example: blog
tagbase: tags
comments_pagespec: 'posts/* and !*/Discussion'
blogspam_pagespec: 'postcomment(*)'
archive_pagespec: 'page(posts/*) and !*/Discussion'
htmlscrubber_skip: '* and !comment(*) and !*/Discussion'
global_sidebars: 0
discussion: 0
locked_pages: '* and !postcomment(*)'
websetup_force_plugins:
- httpauth
- openid
- emailauth
- mdwn
- wmd
- aggregate
websetup_unsafe:
- url
- cgiurl
- verbose
- syslog
- usedirs
- prefix_directives
- indexpages
- repositories
websetup_show_unsafe: 0
cgi_wrappermode: $ENV{IKIWIKI_CGI_WRAPPERMODE}
git_wrappermode: $ENV{IKIWIKI_GIT_WRAPPERMODE}
untrusted_committers:
- $ENV{IKIWIKI_GITDAEMONUSER}
ENV:
TMPDIR: '$ENV{HOME}/tmp'
timezone: GMT
EOF
|