diff options
Diffstat (limited to 'config/production.yaml.example')
-rw-r--r-- | config/production.yaml.example | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/config/production.yaml.example b/config/production.yaml.example index bc9f28e95..d023070e3 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example | |||
@@ -32,7 +32,7 @@ rates_limit: | |||
32 | trust_proxy: | 32 | trust_proxy: |
33 | - 'loopback' | 33 | - 'loopback' |
34 | 34 | ||
35 | # Your database name will be database.name OR "peertube"+database.suffix | 35 | # Your database name will be database.name OR 'peertube'+database.suffix |
36 | database: | 36 | database: |
37 | hostname: 'localhost' | 37 | hostname: 'localhost' |
38 | port: 5432 | 38 | port: 5432 |
@@ -69,9 +69,9 @@ smtp: | |||
69 | 69 | ||
70 | email: | 70 | email: |
71 | body: | 71 | body: |
72 | signature: "PeerTube" | 72 | signature: 'PeerTube' |
73 | subject: | 73 | subject: |
74 | prefix: "[PeerTube]" | 74 | prefix: '[PeerTube]' |
75 | 75 | ||
76 | # PeerTube client/interface configuration | 76 | # PeerTube client/interface configuration |
77 | client: | 77 | client: |
@@ -143,9 +143,9 @@ log: | |||
143 | level: 'info' # 'debug' | 'info' | 'warn' | 'error' | 143 | level: 'info' # 'debug' | 'info' | 'warn' | 'error' |
144 | rotation: | 144 | rotation: |
145 | enabled : true # Enabled by default, if disabled make sure that 'storage.logs' is pointing to a folder handled by logrotate | 145 | enabled : true # Enabled by default, if disabled make sure that 'storage.logs' is pointing to a folder handled by logrotate |
146 | maxFileSize: 12MB | 146 | max_file_size: 12MB |
147 | maxFiles: 20 | 147 | max_files: 20 |
148 | anonymizeIP: false | 148 | anonymize_ip: false |
149 | log_ping_requests: true | 149 | log_ping_requests: true |
150 | prettify_sql: false | 150 | prettify_sql: false |
151 | 151 | ||
@@ -304,7 +304,7 @@ user: | |||
304 | video_quota: -1 | 304 | video_quota: -1 |
305 | video_quota_daily: -1 | 305 | video_quota_daily: -1 |
306 | 306 | ||
307 | # If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag | 307 | # If enabled, the video will be transcoded to mp4 (x264) with `faststart` flag |
308 | # In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions. | 308 | # In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions. |
309 | # Please, do not disable transcoding since many uploaded videos will not work | 309 | # Please, do not disable transcoding since many uploaded videos will not work |
310 | transcoding: | 310 | transcoding: |
@@ -410,7 +410,7 @@ import: | |||
410 | # You can use an HTTP/HTTPS/SOCKS proxy with youtube-dl | 410 | # You can use an HTTP/HTTPS/SOCKS proxy with youtube-dl |
411 | proxy: | 411 | proxy: |
412 | enabled: false | 412 | enabled: false |
413 | url: "" | 413 | url: '' |
414 | torrent: # Magnet URI or torrent file (use classic TCP/UDP/WebSeed to download the file) | 414 | torrent: # Magnet URI or torrent file (use classic TCP/UDP/WebSeed to download the file) |
415 | enabled: false | 415 | enabled: false |
416 | 416 | ||
@@ -444,7 +444,7 @@ instance: | |||
444 | business_model: '' # Supports Markdown | 444 | business_model: '' # Supports Markdown |
445 | 445 | ||
446 | # If you want to explain on what type of hardware your PeerTube instance runs | 446 | # If you want to explain on what type of hardware your PeerTube instance runs |
447 | # Example: "2 vCore, 2GB RAM..." | 447 | # Example: '2 vCore, 2GB RAM...' |
448 | hardware_information: '' # Supports Markdown | 448 | hardware_information: '' # Supports Markdown |
449 | 449 | ||
450 | # What are the main languages of your instance? To interact with your users for example | 450 | # What are the main languages of your instance? To interact with your users for example |
@@ -484,20 +484,20 @@ instance: | |||
484 | # Enabling it will allow other administrators to know that you are mainly federating sensitive content | 484 | # Enabling it will allow other administrators to know that you are mainly federating sensitive content |
485 | # Moreover, the NSFW checkbox on video upload will be automatically checked by default | 485 | # Moreover, the NSFW checkbox on video upload will be automatically checked by default |
486 | is_nsfw: false | 486 | is_nsfw: false |
487 | # By default, "do_not_list" or "blur" or "display" NSFW videos | 487 | # By default, `do_not_list` or `blur` or `display` NSFW videos |
488 | # Could be overridden per user with a setting | 488 | # Could be overridden per user with a setting |
489 | default_nsfw_policy: 'do_not_list' | 489 | default_nsfw_policy: 'do_not_list' |
490 | 490 | ||
491 | customizations: | 491 | customizations: |
492 | javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime | 492 | javascript: '' # Directly your JavaScript code (without <script> tags). Will be eval at runtime |
493 | css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime | 493 | css: '' # Directly your CSS code (without <style> tags). Will be injected at runtime |
494 | # Robot.txt rules. To disallow robots to crawl your instance and disallow indexation of your site, add '/' to "Disallow:' | 494 | # Robot.txt rules. To disallow robots to crawl your instance and disallow indexation of your site, add `/` to `Disallow:` |
495 | robots: | | 495 | robots: | |
496 | User-agent: * | 496 | User-agent: * |
497 | Disallow: | 497 | Disallow: |
498 | # Security.txt rules. To discourage researchers from testing your instance and disable security.txt integration, set this to an empty string. | 498 | # Security.txt rules. To discourage researchers from testing your instance and disable security.txt integration, set this to an empty string. |
499 | securitytxt: | 499 | securitytxt: |
500 | "# If you would like to report a security issue\n# you may report it to:\nContact: https://github.com/Chocobozzz/PeerTube/blob/develop/SECURITY.md\nContact: mailto:" | 500 | '# If you would like to report a security issue\n# you may report it to:\nContact: https://github.com/Chocobozzz/PeerTube/blob/develop/SECURITY.md\nContact: mailto:' |
501 | 501 | ||
502 | services: | 502 | services: |
503 | # Cards configuration to format video in Twitter | 503 | # Cards configuration to format video in Twitter |
@@ -505,7 +505,7 @@ services: | |||
505 | username: '@Chocobozzz' # Indicates the Twitter account for the website or platform on which the content was published | 505 | username: '@Chocobozzz' # Indicates the Twitter account for the website or platform on which the content was published |
506 | # If true, a video player will be embedded in the Twitter feed on PeerTube video share | 506 | # If true, a video player will be embedded in the Twitter feed on PeerTube video share |
507 | # If false, we use an image link card that will redirect on your PeerTube instance | 507 | # If false, we use an image link card that will redirect on your PeerTube instance |
508 | # Change it to "true", and then test on https://cards-dev.twitter.com/validator to see if you are whitelisted | 508 | # Change it to `true`, and then test on https://cards-dev.twitter.com/validator to see if you are whitelisted |
509 | whitelisted: false | 509 | whitelisted: false |
510 | 510 | ||
511 | followers: | 511 | followers: |