/etc/samizdat/sites/samizdat.yaml is in samizdat 0.7.0-2.
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 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 | ---
# config.yaml
#
# Example of Samizdat site-specific configuration
# Site Setup
#
# This section specifies several locations and XHTML fragments that
# define the site. All locations are relative to the web server document
# root.
#
site:
# Absolute path to the directory where media uploads are stored. The
# engine will store the media uploads under this directory, so it
# should be writeable by the Samizdat CGI scripts. See also format:
# section in defaults.yaml.
#
content_dir: '/var/www/samizdat/content'
# Apparent location of the content directory relative to site base, as
# typed in the web browser. This location will be prepended to links
# to media uploads stored under content_dir.
#
content_base: 'content'
# Site name. This is a text string that is used in many different
# places across the site, including page titles, email notifications
# and so on.
#
name: 'Demo'
# Site logo. This can be just a text string, or any XHTML fragment
# that is allowed inside <a> tag. If you put something more complex
# than a simple <img> tag here, make sure that it fits nicely with all
# configured CSS themes.
#
logo: 'Samizdat Demo Site'
# XHTML fragment that is included at the top of the front page. In
# addition to any block-level XHTML markup, it can include SSI file
# include directives: <!--#include file="some-file-name" -->, with
# file names relative to your document root. As with site logo code,
# make sure that this fragment is compatible with your CSS themes.
#
# Can be single text for all languages, or a hash of translations
# grouped by locale name (see locale: section)
#
header:
en: >
<p>Samizdat is a generic RDF-based engine for building
collaboration and open publishing web sites. Samizdat intends to
promote values of freedom, openness, equality, and
cooperation.</p>
<p>For more information about Samizdat, visit the
<a href="http://www.nongnu.org/samizdat/">project
homepage</a>.</p>
de: >
<p>Samizdat ist eine vielseitige, RDF-basierte Plattform um
Webseiten zu erstellen, auf denen jedermann veröffentlichen kann.
Samizdat möchte dabei Werte wie Freiheit, Offenheit,
Gleichberechtigung und Kooperation fördern.</p>
<p>Mehr Informationen zu Samizdat gibt es auf der
<a href="http://www.nongnu.org/samizdat/">Projekt-Webseite</a>.
</p>
es: >
<p>Samizdat es un motor genérico en base a RDF creado para
construir un portal de colaboración y publicación
abierta. Samizdat tiene por objetivo promocionar valores como la
libertad, la sinceridad, la igualdad y la cooperación.</p>
<p>Para más información, visita
<a href="http://www.nongnu.org/samizdat/">la página principal
del proyecto</a>.</p>
fr: >
<p>Samizdat est un moteur RDF générique pour la construction
de sites ouaibbe de solidarité et de publication ouverte. Samizdat
souhaite promouvoir la liberté, la transparence, l'égalité et
la coopération.</p>
<p>Pour plus d'information concernant Samizdat, veuille visiter
<a href="http://www.nongnu.org/samizdat/">la page d'accueil
du projet</a>.</p>
### 是正は着して下さい:samizdat-devel@nongnu.org
# サミズダトがきょうりょく や こうぜんな ちゃく の ウェブサイト には はんよう のRDFの きかん
# じゆう こうぜん びょうどう かち ささえる
# いっぽう
ja: >
<p>サミズダトが協力や公然な着のウェブサイトには汎用のRDFの機関です。
自由や公然や平等や協力の価値は支えりたい。</p>
<p>サミズダトにもう一報には、
<a href="http://www.nongnu.org/samizdat/">プロジェクトのホウム</a>に行て下さい。</p>
pl: >
<p>Samizdat jest ogólny silnik na bazie RDF dla skonstruowania
witryny www dla współpracy i otwartej publikacji. Cel Samizdata jest
popieranie wolność, otwartość, równość i współpraca.</p>
<p>Dla więcej informacji dotyczącej Samizdat, proszę wejdź na
<a href="http://www.nongnu.org/samizdat/">stronie
projektu</a>.</p>
# XHTML fragment that is included at the bottom of the front page,
# similar to site header.
#
footer: > # empty
# If message id is provided below, contents (but not title) of that message
# will be included in the "Links" section of the front page.
#
more_links:
# Location of the site icon. When empty, no link to site icon will be
# included in the generated documents, some web browsers will request
# /favicon.ico in that case.
#
icon:
# This string will be prepended to all cookies set by this site. If
# you run more that one site on a single host, make sure that this
# string is unique for each of these sites.
#
cookie_prefix: samizdat
# Database Connection
#
# Defaults assume following PostgreSQL configuration:
#
# pg_hba.conf:
# local samizdat [all] ident samizdat
#
# pg_ident.conf:
# samizdat postgres postgres
# samizdat www-data samizdat
#
# Options provided below are passed verbatim to Sequel#connect.
#
db:
adapter: postgres
database: samizdat
user: samizdat
# When accessing a local PostgreSQL database, omit the host.
#
#host: localhost
# If PostgreSQL IDENT authentication method is properly configured
# (see doc/install.txt), omit the password.
#
#password: secret
# HTTPS encryption
#
# To ensure security and privacy of your users, it is highly recommended
# to only allow authenticated access over an encrypted HTTPS connection.
# Refer to your web server's documentation on how to configure HTTPS. If
# possible, avoid using self-signed certificates, if you don't already
# have a certificate, get one from CAcert.org.
#
#https:
#
# # Base URL of the HTTPS version of your site.
# #
# base: 'https://localhost/samizdat/'
#
# # Set to 'yes' to force HTTPS for login form.
# #
# force_secure_session: yes
# List of RSS feeds imported into the frontpage of your site. Feeds are
# stored in Samizdat's dRuby cache, to update imported feeds for all
# sites hosted on the server, run samizdat-import-feeds script (it's a
# good idea to put it in cron).
#
#import_feeds:
#
# # Display name of the feed
# 'Local Samizdat':
#
# # Feed URL
# url: 'http://localhost/samizdat/frontpage/rss'
#
# # Number of entries to display (no bigger than limit:page)
# limit: 5
# Timezone
#
# If site timezone is specified and is different from the system
# timezone (defined in /etc/timezone), time values will be converted
# into the site timezone when displayed.
#
#timezone: Europe/Minsk
|