Advertisement
Guest User

Untitled

a guest
May 30th, 2015
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 24.25 KB | None | 0 0
  1. ## Some notes about this file:
  2. ## - All comments start with a double #
  3. ## - All settings are commented out with a single #
  4. ##   To change the default settings, you need both to uncomment the lines
  5. ##   AND, in most cases, to change the value that is given.
  6. ## - Take care to keep proper indentation, that is by simply deleting
  7. ##   the original #, with no additional space before the setting's name.
  8. ## - Take care to keep proper quoting. All ' must have a matching ' at
  9. ##   the end of the same line. The same goes for "
  10. ## - Lines containing "## Section" are section headings. Do not edit them!
  11. ## - Lists need the space after the -
  12. ## - The values true, false and numbers should have no quote marks.
  13. ##   Single words don't need quote marks, but it doesn't do any harm to have them.
  14. ##
  15. ## You can set and/or override all these settings through environment variables
  16. ## with the following conversion rules:
  17. ## - Strip the top level namespace (configuration, production, etc.)
  18. ## - Build the path to the setting, for example environment.s3.enable
  19. ## - Replace the dots with underscores: environment_s3_enable
  20. ## - Convert to upper case: ENVIRONMENT_S3_ENABLE
  21. ## - Specify lists/arrays as comma-separated values
  22. ##
  23. ## - For example, on Heroku:
  24. ##   heroku config:set SERVICES_FACEBOOK_APP_ID=yourappid SERVICES_FACEBOOK_SECRET=yourappsecret
  25.  
  26. configuration: ## Section
  27.  
  28.   ## You need to change or at least review the settings in this section
  29.   ## in order for your pod to work.
  30.   environment: ## Section
  31.  
  32.     ## Set the hostname of the machine you're running Diaspora on, as seen
  33.     ## from the internet. This should be the URL you want to use to
  34.     ## access the pod. So if you plan to use a reverse proxy, it should be
  35.     ## the URL the proxy listens on. DO NOT CHANGE THIS AFTER INITIAL SETUP!
  36.     ## However changing http to https is okay and has no consequences.
  37.     ## If you do change the URL, you will have to start again as the URL
  38.     ## will be hardcoded into the database.
  39.     #url: "https://example.org/"
  40.  
  41.     ## Set the bundle of certificate authorities (CA) certificates.
  42.     ## This is specific to your operating system.
  43.     ## Examples (uncomment the relevant one or add your own):
  44.     ## For Debian, Ubuntu, Archlinux, Gentoo (package ca-certificates):
  45.     certificate_authorities: '/etc/ssl/certs/ca-certificates.crt'
  46.     ## For CentOS, Fedora:
  47.     #certificate_authorities: '/etc/pki/tls/certs/ca-bundle.crt'
  48.  
  49.     ## URL for a remote Redis (default=localhost).
  50.     ## Don't forget to restrict IP access if you uncomment these!
  51.     #redis: 'redis://example_host'
  52.     #redis: 'redis://username:password@host:6379/0'
  53.     #redis: 'unix:///tmp/redis.sock'
  54.  
  55.     ## Require SSL (default=true).
  56.     ## When set, your pod will force the use of HTTPS in production mode.
  57.     ## Since OAuth2 requires SSL, Diaspora's future API might not work if
  58.     ## you're not using SSL. Also there is no guarantee that posting to
  59.     ## services will be possible if SSL is disabled.
  60.     ## Do not change this default unless you are sure!
  61.     require_ssl: false
  62.  
  63.     ## Single-process mode (default=false).
  64.     ## If set to true, Diaspora will work with just the appserver (Unicorn by
  65.     ## default) running. However, this makes it quite slow as intensive jobs
  66.     ## must be run all the time inside the request cycle. We strongly
  67.     ## recommended you leave this disabled for production setups.
  68.     ## Set to true to enable.
  69.     #single_process_mode: false
  70.  
  71.     ## Sidekiq - background processing
  72.     sidekiq: ## Section
  73.  
  74.       ## Number of parallel threads Sidekiq uses (default=5).
  75.       ## If you touch this, please set the pool setting in your database.yml
  76.       ## to a value that's at minimum close to this! You can safely increase
  77.       ## it to 25 and more on a medium-sized pod. This applies per started
  78.       ## Sidekiq worker, so if you set it to 25 and start two workers, you'll
  79.       ## process up to 50 jobs in parallel.
  80.       #concurrency: 5
  81.  
  82.       ## Number of times a job is retried (default=10).
  83.       ## There's an exponential effect to this: if you set this too high you
  84.       ## might get too many jobs building up in the queue.
  85.       ## Set it to false to disable it completely.
  86.       #retry: 10
  87.  
  88.       ## Namespace to use in Redis. Useful if you need to run
  89.       ## multiple instances of Diaspora using the same Redis instance.
  90.       #namespace: "diaspora"
  91.  
  92.       ## Lines of backtrace that are stored on failure (default=15).
  93.       ## Set n to the required value. Set this to false to reduce memory
  94.       ## usage (and log size) if you're not interested in this data.
  95.       #backtrace: 15
  96.  
  97.       ## Log file for Sidekiq (default="log/sidekiq.log")
  98.       #log: "log/sidekiq.log"
  99.  
  100.     ## Use Amazon S3 instead of your local filesystem
  101.     ## to handle uploaded pictures (disabled by default).
  102.     s3: ## Section
  103.  
  104.       #enable: true
  105.       #key: 'change_me'
  106.       #secret: 'change_me'
  107.       #bucket: 'my_photos'
  108.       #region: 'us-east-1'
  109.  
  110.       ## Use max-age header on Amazon S3 resources (default=true).
  111.       ## When true, this allows locally cached images to be served for up to
  112.       ## one year. This can improve load speed and save requests to the image
  113.       ## host. Set to false to revert to browser defaults (usually less than
  114.       ## one year).
  115.       #cache : true
  116.  
  117.     ## Set redirect URL for an external image host (Amazon S3 or other).
  118.     ## If hosting images for your pod on an external server (even your own),
  119.     ## add its URL here. All requests made to images under /uploads/images
  120.     ## will be redirected to https://yourhost.tld/uploads/images/
  121.     #image_redirect_url: 'https://images.example.org'
  122.  
  123.     assets: ## Section
  124.  
  125.       ## Serve static assets via the appserver (default=false).
  126.       ## This is highly discouraged for production use. Let your reverse
  127.       ## proxy/webserver do it by serving the files under public/ directly.
  128.       serve: true
  129.  
  130.       ## Upload your assets to S3 (default=false).
  131.       #upload: false
  132.  
  133.       ## Specify an asset host. Ensure it does not have a trailing slash (/).
  134.       #host: http://cdn.example.org/diaspora
  135.  
  136.     ## Pubsub server (default='https://pubsubhubbub.appspot.com/').
  137.     ## Diaspora is only tested against the default pubsub server.
  138.     ## You probably don't want to uncomment or change this.
  139.     #pubsub_server: 'https://pubsubhubbub.appspot.com/'
  140.  
  141.   ## Settings affecting how ./script/server behaves.
  142.   server: ## Section
  143.  
  144.     ## The port on which the appserver should listen (default=3000).
  145.     #port: 3000
  146.  
  147.     ## Rails environment (default='development').
  148.     ## The environment in which the server should be started by default.
  149.     ## Change this to 'production' if you wish to run a production environment.
  150.     #rails_environment: 'development'
  151.     rails_environment: 'production'
  152.  
  153.     ## Write unicorn stderr and stdout log.
  154.     #stderr_log: '/usr/local/app/diaspora/log/unicorn-stderr.log'
  155.     #stdout_log: '/usr/local/app/diaspora/log/unicorn-stdout.log'
  156.  
  157.     ## Number of Unicorn worker processes (default=2).
  158.     ## Increase this if you have many users.
  159.     #unicorn_worker: 2
  160.  
  161.     ## Number of seconds before a request is aborted (default=90).
  162.     ## Increase if you get empty responses, or if large image uploads fail.
  163.     ## Decrease if you're under heavy load and don't care if some
  164.     ## requests fail.
  165.     #unicorn_timeout: 90
  166.  
  167.     ## Embed a Sidekiq worker inside the unicorn process (default=false).
  168.     ## Useful for minimal Heroku setups.
  169.     #embed_sidekiq_worker: false
  170.  
  171.     ## Number of Sidekiq worker processes (default=1).
  172.     ## In most cases it is better to
  173.     ## increase environment.sidekiq.concurrency instead!
  174.     #sidekiq_workers: 1
  175.  
  176.   ## Diaspora has an internal XMPP server. If you want to enable the chat
  177.   ## functionality or want to use a custom XMPP server, then you should edit
  178.   ## the following configuration.
  179.   ##
  180.   ## The internal XMPP server does not support https
  181.   ## and even if we implement it, we would ran into certificate issues.
  182.   ## The problem with mixed-content is described here:
  183.   ## https://github.com/Zauberstuhl/diaspora/issues/6
  184.   ##
  185.   ## The easiest way of avoiding certificate and mixed-content issues
  186.   ## is to use a proxy, e.g.:
  187.   ##
  188.   ## Apache: https://gist.github.com/Zauberstuhl/2d09330961614b12b642
  189.   ## Nginx: https://gist.github.com/Zauberstuhl/ee95e1eacefa6ddbec6e
  190.   ##
  191.   ## If you configured your proxy correctly, you should adjust
  192.   ## the configuration in the BOSH section.
  193.   chat: ## Section
  194.  
  195.     ## Enable the chat service and all its components.
  196.     #enabled: true
  197.  
  198.     ## Custom XMPP server configuration goes here.
  199.     server: ## Section
  200.  
  201.       ## Start built-in XMPP server (default=true).
  202.       ## In case you want to run your own server, you should disable it.
  203.       #enabled: false
  204.  
  205.       ## Set the directory in which to look for virtual hosts'
  206.       ## TLS certificates.
  207.       #certs: 'config/vines'
  208.  
  209.       ## The server accepts by default only valid certificates.
  210.       ## Any connection which uses self-signed ones will be closed.
  211.       ## If you'd like to accept self-signed certificates
  212.       ## on your server, set the next option to true.
  213.       #accept_self_signed: true
  214.  
  215.       ## Only edit the next option if you'd like to deny
  216.       ## your users to exchange messages between other XMPP servers.
  217.       #cross_domain_messages: false
  218.  
  219.       ## Set the maximum of offline messages stored per user (default=150).
  220.       ## If it exceeds, it will start deleting old messages. You can disable
  221.       ## offline message support completely by setting the option to zero.
  222.       #max_offline_msgs: 150
  223.  
  224.       ## Client to server
  225.       c2s: ## Section
  226.  
  227.         ## Configure the address that vines should listen on.
  228.         #address: '0.0.0.0'
  229.  
  230.         ## Configure the client-to-server port.
  231.         #port: 5222
  232.  
  233.         ## The maximum we'd like to allow for stanza size.
  234.         #max_stanza_size: 65536
  235.  
  236.         ## The max_resources_per_account attribute, limits how many
  237.         ## concurrent connections one user can have to the server.
  238.         #max_resources_per_account: 5
  239.  
  240.       ## Server to server
  241.       s2s: ## Section
  242.  
  243.         ## Configure the address that vines should listen on.
  244.         #address: '0.0.0.0'
  245.  
  246.         ## Configure the server-to-server port.
  247.         #port: 5269
  248.  
  249.         ## The max_stanza_size attribute should be
  250.         ## much larger than the setting for client-to-server.
  251.         #max_stanza_size: 131072
  252.  
  253.         ## By default every XMPP server with a valid certificate
  254.         ## is able to communicate with your server. In case of a
  255.         ## malicious server (e.g. spam reason), you can black-list them.
  256.         #blacklist:
  257.         #  - 'example.com'
  258.         #  - 'malicous.net'
  259.  
  260.       ## XEP-0124 BOSH requests
  261.       bosh: ## Section
  262.  
  263.         ## If you'd like to use a proxy, you should set the proxy
  264.         ## option to true, otherwise jsxc always tries to
  265.         ## connect directly to the port specified below.
  266.         #proxy: true
  267.  
  268.         ## Configure the address that vines should listen on.
  269.         #address: '0.0.0.0'
  270.  
  271.         ## Configure the BOSH port.
  272.         #port: 5280
  273.  
  274.         ## Configure the bind endpoint.
  275.         #bind: '/http-bind'
  276.  
  277.         ## The maximum we'd like to allow for stanza size.
  278.         #max_stanza_size: 65536
  279.  
  280.         ## The max_resources_per_account attribute, limits how many
  281.         ## concurrent connections one user can have to the server.
  282.         #max_resources_per_account: 5
  283.  
  284.       ## Specify log behaviour here.
  285.       log: ## Section
  286.  
  287.         ## Log file location.
  288.         #file: 'log/vines.log'
  289.  
  290.         ## Set the logging level to debug, info, warn, error, or fatal.
  291.         ## The debug level logs all XML sent and received by the server.
  292.         #level: 'info'
  293.  
  294.   ## Settings potentially affecting the privacy of your users.
  295.   privacy: ## Section
  296.  
  297.     ## Include jQuery from jquery.com's CDN (default=false).
  298.     ## Enabling this can reduce traffic and speed up load time since most
  299.     ## clients already have this one cached. When set to false (the default),
  300.     ## the jQuery library will be loaded from your pod's own resources.
  301.     #jquery_cdn: false
  302.  
  303.     ## Google Analytics (disabled by default).
  304.     ## Provide a key to enable tracking by Google Analytics.
  305.     #google_analytics_key:
  306.  
  307.     ## Piwik Tracking (disabled by default).
  308.     ## Provide a site ID and the host piwik is running on to enable
  309.     ## tracking through Piwik.
  310.     piwik: ## Section
  311.  
  312.       #enable: true
  313.       #host: 'stats.example.org'
  314.       #site_id: 1
  315.  
  316.     ## Mixpanel event tracking (disabled by default).
  317.     #mixpanel_uid:
  318.  
  319.     ## Chartbeat tracking (disabled by default).
  320.     #chartbeat_uid:
  321.  
  322.     ## Statistics
  323.     ## Your pod will report its name, software version and whether
  324.     ## or not registrations are open via /statistics.json.
  325.     ## Uncomment the options below to enable more statistics.
  326.     statistics: ## Section
  327.  
  328.       ## Local user total and 6 month active counts.
  329.       #user_counts: true
  330.  
  331.       ## Local post total count.
  332.       #post_counts: true
  333.       #comment_counts: true
  334.  
  335.     ## Use Camo to proxy embedded remote images.
  336.     ## Do not enable this setting unless you have a working Camo setup. Using
  337.     ## camo to proxy embedded images will improve the privacy and security of
  338.     ## your pod's frontend, but it will increase the traffic on your server.
  339.     ## Check out https://wiki.diasporafoundation.org/Installation/Camo for
  340.     ## more details and installation instructions.
  341.     camo: ## Section
  342.  
  343.       ## Proxy images embedded via markdown (default=false).
  344.       ## Embedded images are quite often from non-SSL sites and may cause a
  345.       ## partial content warning, so this is recommended.
  346.       #proxy_markdown_images: true
  347.  
  348.       ## Proxy Open Graph thumbnails (default=false).
  349.       ## Open Graph thumbnails may or may not be encrypted and loaded from
  350.       ## servers outside the network. Recommended.
  351.       #proxy_opengraph_thumbnails: true
  352.  
  353.       ## Proxy remote pod's images (default=false).
  354.       ## Profile pictures and photos from other pods usually are encrypted,
  355.       ## so enabling this is only useful if you want to avoid HTTP requests to
  356.       ## third-party servers. This will create a lot of traffic on your camo
  357.       ## instance. You have been warned.
  358.       #proxy_remote_pod_images: true
  359.  
  360.       ## Root of your Camo installation
  361.       #root: "https://example.com/camo/"
  362.  
  363.       ## Shared key of your Camo installation
  364.       #key: "example123example456example!"
  365.  
  366.   ## General settings
  367.   settings: ## Section
  368.  
  369.     ## Pod name (default="diaspora*")
  370.     ## The pod name displayed in various locations, including the header.
  371.     #pod_name: "diaspora*"
  372.  
  373.     ## Allow registrations (default=true)
  374.     ## Set this to false to prevent people from signing up to your pod
  375.     ## without an invitation. Note that this needs to be set to true
  376.     ## (or commented out) to enable the first registration (you).
  377.     #enable_registrations: true
  378.  
  379.     ## Auto-follow on sign-up (default=true)
  380.     ## Users will automatically follow a specified account on creation.
  381.     ## Set this to false if you don't want your users to automatically
  382.     ## follow an account upon creation.
  383.     #autofollow_on_join: true
  384.  
  385.     ## Auto-follow account (default='diasporahq@joindiaspora.com')
  386.     ## The diaspora* HQ account keeps users up to date with news about Diaspora.
  387.     ## If you set another auto-follow account (for example your podmin account),
  388.     ## please consider resharing diaspora* HQ's posts for your pod's users!
  389.     #autofollow_on_join_user: 'diasporahq@joindiaspora.com'
  390.  
  391.     ## Invitation settings
  392.     invitations: ## Section
  393.  
  394.       ## Enable invitations (default=true)
  395.       ## Set this to false if you don't want users to be able to send invites.
  396.       #open: true
  397.  
  398.       ## Number of invitations per invite link (default=25)
  399.       ## Every user will see such a link if you have enabled
  400.       ## invitations on your pod.
  401.       #count: 25
  402.  
  403.     ## Paypal donations (disabled by default)
  404.     ## You can set details for a Paypal button here to allow donations
  405.     ## towards running the pod.
  406.     ## First, enable the function, then set the currency in which you
  407.     ## wish to receive donations, and **either** a hosted button id
  408.     ## **or** an encrypted key for an unhosted button.
  409.     paypal_donations: ## Section
  410.       #enable: false
  411.    
  412.       ## Currency used (USD, EUR...)
  413.       #currency: USD
  414.    
  415.       ## hosted Paypal button id
  416.       #paypal_hosted_button_id: "change_me"
  417.       ## OR encrypted key of unhosted button
  418.       #paypal_unhosted_button_encrypted: "-----BEGIN PKCS7-----"
  419.  
  420.     ## Bitcoin donations
  421.     ## You can provide a bitcoin address here to allow your users to provide
  422.     ## donations towards the running of their pod.
  423.     #bitcoin_address: "change_me"
  424.  
  425.     ## Community spotlight (disabled by default)
  426.     ## The community spotlight shows new users public posts from people you
  427.     ## think are interesting in Diaspora's community. To add an account
  428.     ## to the community spotlight add the 'spotlight' role to it.
  429.     community_spotlight: ## Section
  430.  
  431.       #enable: true
  432.  
  433.       ## E-mail address to which users can make suggestions about who
  434.       ## should be in the community spotlight (optional).
  435.       #suggest_email: 'admin@example.org'
  436.  
  437.     ## CURL debug (default=false)
  438.     ## Turn on extra verbose output when sending stuff. Note: you
  439.     ## don't need to touch this unless explicitly told to.
  440.     #typhoeus_verbose: false
  441.  
  442.     ## Maximum number of parallel HTTP requests made to other pods (default=20)
  443.     ## Be careful, raising this setting will heavily increase the memory usage
  444.     ## of your Sidekiq workers.
  445.     #typhoeus_concurrency: 20
  446.  
  447.     ## Captcha settings
  448.     captcha: ## Section
  449.  
  450.       ## Enable captcha (default=true)
  451.       ## Set this to false if you don't want to use captcha for signup process.
  452.       enable: false
  453.  
  454.       ## Captcha image size (default='120x20')
  455.       #image_size: '120x20'
  456.  
  457.       ## Length of captcha text (default=5)(max=12)
  458.       #captcha_length: 5
  459.  
  460.       ## Captcha image style (default='simply_green')
  461.       ## Available options for captcha image styles are: 'simply_blue',
  462.       ## 'simply_red' 'simply_green', 'charcoal_grey', 'embossed_silver',
  463.       ## 'all_black', 'distorted_black', 'almost_invisible', 'random'.
  464.       #image_style: 'simply_green'
  465.  
  466.       ## Captcha image distortion (default='low')
  467.       ## Sets the level of image distortion used in the captcha.
  468.       ## Available options are: 'low', 'medium', 'high', 'random'.
  469.       #distortion: 'low'
  470.  
  471.     ## Terms of Service
  472.     ## Show a default or customized terms of service for users.
  473.     ## You can create a custom Terms of Service by placing a template
  474.     ## as app/views/terms/terms.haml or app/views/terms/terms.erb
  475.     ## The default terms of service that can be extended is
  476.     ## at app/views/terms/default.haml
  477.     ## NOTE! The default terms have not been checked over by a lawyer and
  478.     ## thus are unlikely to provide full legal protection for all situations
  479.     ## for a podmin using them. They are also not specific to all countries
  480.     ## and jurisdictions. If you are unsure, please check with a lawyer.
  481.     ## We provide these for podmins as some basic rules that podmins
  482.     ## can communicate to users easily via the diaspora* server software.
  483.     ## Uncomment to enable this feature.
  484.     terms: ## Section
  485.  
  486.       ## First enable it by uncommenting below.
  487.       #enable: true
  488.  
  489.       ## Important! If you enable the terms, you should always
  490.       ## set a location under which laws any disputes are governed
  491.       ## under. For example, country or state/country, depending
  492.       ## on the country in question.
  493.       ## If this is not set, the whole paragraph about governing
  494.       ## laws *is not shown* in the terms page.
  495.       #jurisdiction: ""
  496.  
  497.       ## Age limit for signups.
  498.       ## Set a number to activate this setting. This age limit is shown
  499.       ## in the default ToS document.
  500.       #minimum_age: false
  501.  
  502.     ## Maintenance
  503.     ## Various pod maintenance related settings are controlled from here.
  504.     maintenance: ## Section
  505.  
  506.       ## Removing old inactive users can be done automatically by background
  507.       ## processing. The amount of inactivity is set by `after_days`. A warning
  508.       ## email will be sent to the user and after an additional `warn_days`, the
  509.       ## account will be automatically closed.
  510.       ## This maintenance is not enabled by default.
  511.       remove_old_users: ## Section
  512.  
  513.         #enable: true
  514.         #after_days: 730
  515.         #warn_days: 30
  516.  
  517.         ## Limit queuing for removal per day.
  518.         #limit_removals_to_per_day: 100
  519.  
  520.     ## Source code URL
  521.     ## URL to the source code your pod is currently running.
  522.     ## If not set your pod will provide a downloadable archive.
  523.     #source_url: 'https://example.org/username/diaspora'
  524.  
  525.   ## Posting from Diaspora to external services (all are disabled by default).
  526.   services: ## Section
  527.  
  528.     ## OAuth credentials for Facebook
  529.     facebook: ## Section
  530.  
  531.       #enable: true
  532.       #app_id: 'abcdef'
  533.       #secret: 'change_me'
  534.  
  535.     ## OAuth credentials for Twitter
  536.     twitter: ## Section
  537.  
  538.       #enable: true
  539.       #key: 'abcdef'
  540.       #secret: 'change_me'
  541.  
  542.     ## OAuth credentials for Tumblr
  543.     tumblr: ## Section
  544.  
  545.       #enable: true
  546.       #key: 'abcdef'
  547.       #secret: 'change_me'
  548.  
  549.     ## OAuth credentials for Wordpress
  550.     wordpress: ## Section
  551.  
  552.       #enable: true
  553.       #client_id: 'abcdef'
  554.       #secret: 'change_me'
  555.  
  556.   ## Allow your pod to send emails for notifications, password recovery
  557.   ## and other purposes (disabled by default).
  558.   mail: ## Section
  559.  
  560.     ## First you need to enable it.
  561.     #enable: true
  562.  
  563.     ## Sender address used in mail sent by Diaspora.
  564.     #sender_address: 'no-reply@example.org'
  565.  
  566.     ## This selects which mailer should be used. Use 'smtp' for a smtp
  567.     ## connection, 'sendmail' to use the sendmail binary or
  568.     ## 'messagebus' to use the messagebus service.
  569.     #method: 'smtp'
  570.  
  571.     ## Ignore if method isn't 'smtp'.
  572.     smtp: ## Section
  573.  
  574.       ## Host and port of the smtp server handling outgoing mail.
  575.       ## This should match the common name of the certificate sent by
  576.       ## the SMTP server, if it sends one. (default port=587)
  577.       #host: 'smtp.example.org'
  578.       #port: 587
  579.  
  580.       ## Authentication required to send mail (default='plain').
  581.       ## Use one of 'plain', 'login' or 'cram_md5'. Use 'none'
  582.       ## if server does not support authentication.
  583.       #authentication: 'plain'
  584.  
  585.       ## Credentials to log in to the SMTP server.
  586.       ## May be necessary if authentication is not 'none'.
  587.       #username: 'change_me'
  588.       #password: 'change_me'
  589.  
  590.       ## Automatically enable TLS (default=true).
  591.       ## Leave this commented out if authentication is set to 'none'.
  592.       #starttls_auto: true
  593.  
  594.       ## The domain for the HELO command, if needed.
  595.       #domain: 'smtp.example.org'
  596.  
  597.       ## OpenSSL verify mode used when connecting to a SMTP server with TLS.
  598.       ## Set this to 'none' if you have a self-signed certificate. Possible
  599.       ## values: 'none', 'peer', 'client_once', 'fail_if_no_peer_cert'.
  600.       #openssl_verify_mode: 'none'
  601.  
  602.     ## Ignore if method isn't 'sendmail'
  603.     sendmail: ## Section
  604.  
  605.       ## The path to the sendmail binary (default='/usr/sbin/sendmail')
  606.       #location: '/usr/sbin/sendmail'
  607.  
  608.       ## Use exim and sendmail (default=false)
  609.       #exim_fix: false
  610.  
  611.     ## Ignore if method isn't 'messagebus'
  612.     #message_bus_api_key: 'abcdef'
  613.  
  614.   ## Administrator settings
  615.   admins: ## Section
  616.  
  617.     ## Set the admin account.
  618.     ## This doesn't make the user an admin but is used when a generic
  619.     ## admin contact is needed, much like the postmaster role in mail
  620.     ## systems. Set only the username, NOT the full ID.
  621.     #account: "podmaster"
  622.  
  623.     ## E-mail address to contact the administrator.
  624.     #podmin_email: 'podmin@example.org'
  625.  
  626. ## Here you can override settings defined above if you need
  627. ## to have them different in different environments.
  628. production: ## Section
  629.   environment: ## Section
  630.     #redis_url: 'redis://production.example.org:6379'
  631.  
  632. development: ## Section
  633.   environment: ## Section
  634.     #redis_url: 'redis://production.example.org:6379'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement