41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
|
|
## config.mk.in
|
|
##
|
|
## Template for configuration.
|
|
## The comment preceding any variable is printed as its prompt.
|
|
|
|
# Right now AWS is the only option. This is only here for future use.
|
|
|
|
# AWS: Are we using AWS? 1 means yes, 0 means no (only 1 works right now!)
|
|
#AWS = 1
|
|
|
|
|
|
# AWS_REGION: what region is all this stuff going in?
|
|
AWS_REGION = us-west-2
|
|
|
|
# Instance type is configured for a single instance only
|
|
|
|
# AWS_SINGLE_INSTANCE_TYPE: What size instance should we be using
|
|
AWS_SINGLE_INSTANCE_TYPE = t4g.small
|
|
|
|
# Paste (one-line!) the root SSH public key for the AWS instance, or leave blank to generate new private/public keys
|
|
AWS_INSTANCE_PUBLIC_KEY =
|
|
|
|
|
|
|
|
|
|
|
|
# What is the domain name that will be used for these services? Don't be silly and use the default in production
|
|
DOMAIN_NAME = burn.social
|
|
|
|
# What alternate domains will this use? Leave blank for none.
|
|
ALTERNATE_DOMAINS =
|
|
|
|
# TODO: more detailed sidekiq tuning per https://thomas-leister.de/en/scaling-up-mastodon/
|
|
|
|
# How many sidekiq containers should Mastodon have?
|
|
MASTODON_SIDEKIQ_COUNT = 2
|
|
|
|
# How many threads in each sidekiq container?
|
|
MASTODON_SIDEKIQ_THREADS = 100
|
|
|