ac7df96f68
Update some default values
71 lines
1.4 KiB
YAML
71 lines
1.4 KiB
YAML
# Name of your instance
|
||
name: 'example-instance-name'
|
||
|
||
# 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: 'https://github.com/syuilo/misskey'
|
||
|
||
# Feedback URL (e.g. github issue)
|
||
feedback_url: 'https://github.com/syuilo/misskey/issues'
|
||
|
||
# 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
|
||
db: example-db
|
||
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
|