36 lines
1,019 B
Makefile
36 lines
1,019 B
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 DNS subdomain to be delegated for these services? Leave blank to skip.
|
|
AWS_ROUTE53_ZONE =
|
|
|
|
|
|
|
|
# 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
|
|
|