-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.php
39 lines (29 loc) · 1006 Bytes
/
config.example.php
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
<?php
// Self URL Path
// The fully qualified URL used to access BetterVideoRss.
putenv('BVRSS_SELF_URL_PATH=https://example.com/BetterVideoRss/');
// YouTube API Key
// https://developers.google.com/youtube/v3/getting-started
putenv('BVRSS_YOUTUBE_API_KEY=');
// Raw API Errors
// Display raw API errors
putenv('BVRSS_RAW_API_ERRORS=false');
// Timezone
// https://www.php.net/manual/en/timezones.php
putenv('BVRSS_TIMEZONE=UTC');
// Date Format
// https://www.php.net/manual/en/function.date.php
putenv('BVRSS_DATE_FORMAT=F j, Y');
// Time Format
// https://www.php.net/manual/en/function.date.php
putenv('BVRSS_TIME_FORMAT=H:i');
// Cache directory
// Name or path of the directory that cache files are saved to.
putenv('BVRSS_CACHE_DIR=cache');
// Disable Cache
putenv('BVRSS_DISABLE_CACHE=false');
// Enable cache viewer
putenv('BVRSS_ENABLE_CACHE_VIEWER=false');
// Disable content security policy
// https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
putenv('BVRSS_DISABLE_CSP=false');