-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.conf.sample
64 lines (59 loc) · 1.47 KB
/
app.conf.sample
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
#!/usr/bin/env perl
# PODNAME: app.conf
# ABSTRACT: WebApp Configuration for FakePause
use utf8;
use strict;
use warnings;
+{
#
# for Mojolicious hypnotoad server
#
hypnotoad => {
listen => [ 'http://*:8000' ],
workers => 6,
},
#
# for site
#
project_name => 'Fake Pause for SILEX',
project_desc => 'The Fake [Perl programming] Authors Upload Server',
copyright => '2014 SILEX',
google_analytics => q{},
secrets => [
'2014-02-27 02:22:55 Asia/Seoul',
],
nav_links => {
left => [ ],
right => [
{
desc => 'DarkPAN',
url => 'https://darkpan.silex.kr',
},
{
desc => 'CPAN',
url => 'http://cpan.silex.kr',
},
{
desc => 'Dzil Profile',
url => 'https://github.com/silexkr/dzil-profiles-silex',
},
{
desc => 'GitHub',
url => 'https://github.com/silexkr/fake-pause',
},
],
},
css_str => 'body{padding-top:50px}',
#
# FakePause
#
fakepause => {
repo => '/home/darkpan/public_html',
auth => {
#
# perl -MMIME::Base64 -E 'say encode_base64(join(":", @ARGV), q{});' FAKEPAUSEID fakepausepw
#
SILEX => 'U0lMRVg6bWltZXBhc3N3b3Jk',
},
},
};