diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-07-14 23:06:46 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-07-14 23:06:46 +0900 |
| commit | 3695e6db150ffd0c0b7fd83d0781eafa30db59c8 (patch) | |
| tree | 0ef3409a8a7276a7735e60911aa4d3948b4abafd | |
| parent | Update setup.*.md (diff) | |
| download | misskey-3695e6db150ffd0c0b7fd83d0781eafa30db59c8.tar.gz misskey-3695e6db150ffd0c0b7fd83d0781eafa30db59c8.tar.bz2 misskey-3695e6db150ffd0c0b7fd83d0781eafa30db59c8.zip | |
Update config example
| -rw-r--r-- | .config/example.yml | 74 |
1 files changed, 31 insertions, 43 deletions
diff --git a/.config/example.yml b/.config/example.yml index b5a6eb0984..2e0970643e 100644 --- a/.config/example.yml +++ b/.config/example.yml @@ -1,35 +1,16 @@ -# Name of your instance -name: 'example-instance-name' +name: 'example-instance-name' # Name of your instance +description: 'example-description' # Description of your instance -# Description of your instance -description: 'example-description' - -# Maintainer maintainer: - # Your name - name: 'example-maitainer-name' - - # Your contact (http or mailto) - url: 'http://example.com/' - - # Repository URL - repository_url: 'http://example.com/' - - # Feedback URL (e.g. github issue) - feedback_url: 'http://example.com/' + name: 'example-maitainer-name' # Your name + url: 'http://example.com/' # Your contact (http or mailto) + repository_url: 'http://example.com/' # Repository URL + feedback_url: 'http://example.com/' # Feedback URL (e.g. github issue) -# URL url: http://localhost/ port: 80 -# TLS (Uncomment if you need) -# https: -# # path for certification -# key: example-tls-key -# cert: example-tls-cert - -# MongoDB mongodb: host: localhost port: 27017 @@ -37,35 +18,42 @@ mongodb: user: example-misskey-user pass: example-misskey-pass -# Redis redis: host: localhost port: 6379 pass: 'example-pass' -# reCAPTCHA recaptcha: site_key: example-site-key secret_key: example-secret-key -# ServiceWorker -sw: - # Public key of VAPID - public_key: example-sw-public-key - - # Private key of VAPID - private_key: example-sw-private-key - -# Google Maps API -google_maps_api_key: example-google-maps-api-key - -# Twitter integration (can be omitted) -twitter: - consumer_key: example-twitter-consumer-key - consumer_secret: example-twitter-consumer-secret-key - # If enabled: # Server will not cache remote files (Using direct link instead). # You can save your storage. # Users cannot see remote images when they turn off "Show media from a remote server" setting. preventCache: false + +# +# Below settings are optional +# + +# TLS +# https: +# # path for certification +# key: example-tls-key +# cert: example-tls-cert + +# ServiceWorker +# sw: +# # Public key of VAPID +# public_key: example-sw-public-key + +# # Private key of VAPID +# private_key: example-sw-private-key + +# google_maps_api_key: example-google-maps-api-key + +# Twitter integration +# twitter: +# consumer_key: example-twitter-consumer-key +# consumer_secret: example-twitter-consumer-secret-key |