Misskey

Packages

misskey-2024.11.0
Version: 2024.11.0

Options

services.misskey.database.createLocally

Create the PostgreSQL database locally. Sets services.misskey.settings.db.{db,host,port,user,pass}.

Type:
boolean
Default:
false
services.misskey.database.passwordFile

The path to a file containing the database password. Sets services.misskey.settings.db.pass.

Type:
null or absolute path
Default:
null
services.misskey.enable

Whether to enable misskey.

Type:
boolean
Default:
false
services.misskey.meilisearch.createLocally

Create and use a local Meilisearch instance. Sets services.misskey.settings.meilisearch.{host,port,ssl}.

Type:
boolean
Default:
false
services.misskey.meilisearch.keyFile

The path to a file containing the Meilisearch API key. Sets services.misskey.settings.meilisearch.apiKey.

Type:
null or absolute path
Default:
null
services.misskey.package

The misskey package to use.

Type:
package
Default:
pkgs.misskey
services.misskey.redis.createLocally

Create and use a local Redis instance. Sets services.misskey.settings.redis.host.

Type:
boolean
Default:
false
services.misskey.redis.passwordFile

The path to a file containing the Redis password. Sets services.misskey.settings.redis.pass.

Type:
null or absolute path
Default:
null
services.misskey.reverseProxy.enable

Whether to enable a HTTP reverse proxy for Misskey.

Type:
boolean
Default:
false
services.misskey.reverseProxy.host

The fully qualified domain name to bind to. Sets services.misskey.settings.url.

This is required when using services.misskey.reverseProxy.enable = true.

Type:
null or string
Default:
null
services.misskey.reverseProxy.ssl

Whether to enable SSL for the reverse proxy. Sets services.misskey.settings.url.

This is required when using services.misskey.reverseProxy.enable = true.

Type:
null or boolean
Default:
null
services.misskey.reverseProxy.webserver

The webserver to use as the reverse proxy.

Type:
attribute-tagged union
services.misskey.reverseProxy.webserver.caddy

Extra configuration for the caddy virtual host of Misskey. Set to { } to use the default configuration.

Type:
submodule
Default:
{ }
services.misskey.reverseProxy.webserver.caddy.extraConfig

Additional lines of configuration appended to this virtual host in the automatically generated Caddyfile.

Type:
strings concatenated with "\n"
Default:
""
services.misskey.reverseProxy.webserver.caddy.hostName

Canonical hostname for the server.

Type:
string
Default:
"‹name›"
services.misskey.reverseProxy.webserver.caddy.listenAddresses

A list of host interfaces to bind to for this virtual host.

Type:
list of string
Default:
[ ]
services.misskey.reverseProxy.webserver.caddy.logFormat

Configuration for HTTP request logging (also known as access logs). See https://caddyserver.com/docs/caddyfile/directives/log#log for details.

Type:
strings concatenated with "\n"
Default:
'' output file ''${config.services.caddy.logDir}/access-''${hostName}.log ''
services.misskey.reverseProxy.webserver.caddy.serverAliases

Additional names of virtual hosts served by this virtual host configuration.

Type:
list of string
Default:
[ ]
services.misskey.reverseProxy.webserver.caddy.useACMEHost

A host of an existing Let's Encrypt certificate to use. This is mostly useful if you use DNS challenges but Caddy does not currently support your provider.

Note that this option does not create any certificates, nor does it add subdomains to existing ones – you will need to create them manually using .

Type:
null or string
Default:
null
services.misskey.reverseProxy.webserver.nginx

Extra configuration for the nginx virtual host of Misskey. Set to { } to use the default configuration.

Type:
submodule
Default:
{ }
services.misskey.reverseProxy.webserver.nginx.acmeFallbackHost

Host which to proxy requests to if ACME challenge is not found. Useful if you want multiple hosts to be able to verify the same domain name.

With this option, you could request certificates for the present domain with an ACME client that is running on another host, which you would specify here.

Type:
null or string
Default:
null
services.misskey.reverseProxy.webserver.nginx.acmeRoot

Directory for the ACME challenge, which is public. Don't put certs or keys in here. Set to null to inherit from config.security.acme.

Type:
null or string
Default:
"/var/lib/acme/acme-challenge"
services.misskey.reverseProxy.webserver.nginx.addSSL

Whether to enable HTTPS in addition to plain HTTP. This will set defaults for listen to listen on all interfaces on the respective default ports (80, 443).

Type:
boolean
Default:
false
services.misskey.reverseProxy.webserver.nginx.basicAuth

Basic Auth protection for a vhost.

WARNING: This is implemented to store the password in plain text in the Nix store.

Type:
attribute set of string
Default:
{ }
services.misskey.reverseProxy.webserver.nginx.basicAuthFile

Basic Auth password file for a vhost. Can be created by running {command}nix-shell --packages apacheHttpd --run 'htpasswd -B -c FILENAME USERNAME'.

Type:
null or absolute path
Default:
null
services.misskey.reverseProxy.webserver.nginx.default

Makes this vhost the default.

Type:
boolean
Default:
false
services.misskey.reverseProxy.webserver.nginx.enableACME

Whether to ask Let's Encrypt to sign a certificate for this vhost. Alternately, you can use an existing certificate through {option}useACMEHost.

Type:
boolean
Default:
false
services.misskey.reverseProxy.webserver.nginx.extraConfig

These lines go to the end of the vhost verbatim.

Type:
strings concatenated with "\n"
Default:
""
services.misskey.reverseProxy.webserver.nginx.forceSSL

Whether to add a separate nginx server block that redirects (defaults to 301, configurable with redirectCode) all plain HTTP traffic to HTTPS. This will set defaults for listen to listen on all interfaces on the respective default ports (80, 443), where the non-SSL listens are used for the redirect vhosts.

Type:
boolean
Default:
false
services.misskey.reverseProxy.webserver.nginx.globalRedirect

If set, all requests for this host are redirected (defaults to 301, configurable with redirectCode) to the given hostname.

Type:
null or string
Default:
null
services.misskey.reverseProxy.webserver.nginx.http2

Whether to enable the HTTP/2 protocol. Note that (as of writing) due to nginx's implementation, to disable HTTP/2 you have to disable it on all vhosts that use a given IP address / port. If there is one server block configured to enable http2, then it is enabled for all server blocks on this IP. See https://stackoverflow.com/a/39466948/263061.

Type:
boolean
Default:
true
services.misskey.reverseProxy.webserver.nginx.http3

Whether to enable the HTTP/3 protocol. This requires using pkgs.nginxQuic package which can be achieved by setting services.nginx.package = pkgs.nginxQuic; and activate the QUIC transport protocol services.nginx.virtualHosts.<name>.quic = true;. Note that HTTP/3 support is experimental and not yet recommended for production. Read more at https://quic.nginx.org/ HTTP/3 availability must be manually advertised, preferably in each location block.

Type:
boolean
Default:
true
services.misskey.reverseProxy.webserver.nginx.http3_hq

Whether to enable the HTTP/0.9 protocol negotiation used in QUIC interoperability tests. This requires using pkgs.nginxQuic package which can be achieved by setting services.nginx.package = pkgs.nginxQuic; and activate the QUIC transport protocol services.nginx.virtualHosts.<name>.quic = true;. Note that special application protocol support is experimental and not yet recommended for production. Read more at https://quic.nginx.org/

Type:
boolean
Default:
false
services.misskey.reverseProxy.webserver.nginx.kTLS

Whether to enable kTLS support. Implementing TLS in the kernel (kTLS) improves performance by significantly reducing the need for copying operations between user space and the kernel. Required Nginx version 1.21.4 or later.

Type:
boolean
Default:
false
services.misskey.reverseProxy.webserver.nginx.listen

Listen addresses and ports for this virtual host. IPv6 addresses must be enclosed in square brackets. Note: this option overrides addSSL and onlySSL.

If you only want to set the addresses manually and not the ports, take a look at listenAddresses.

Type:
list of (submodule)
Default:
[ ]
services.misskey.reverseProxy.webserver.nginx.listen.*.addr

Listen address.

Type:
string
services.misskey.reverseProxy.webserver.nginx.listen.*.extraParameters

Extra parameters of this listen directive.

Type:
list of string
Default:
[ ]
services.misskey.reverseProxy.webserver.nginx.listen.*.port

Port number to listen on. If unset and the listen address is not a socket then nginx defaults to 80.

Type:
null or 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default:
null
services.misskey.reverseProxy.webserver.nginx.listen.*.proxyProtocol

Enable PROXY protocol.

Type:
boolean
Default:
false
services.misskey.reverseProxy.webserver.nginx.listen.*.ssl

Enable SSL.

Type:
boolean
Default:
false
services.misskey.reverseProxy.webserver.nginx.listenAddresses

Listen addresses for this virtual host. Compared to listen this only sets the addresses and the ports are chosen automatically.

Note: This option overrides enableIPv6

Type:
list of string
Default:
[ ]
services.misskey.reverseProxy.webserver.nginx.locations

Declarative location config

Type:
attribute set of (submodule)
Default:
{ }
services.misskey.reverseProxy.webserver.nginx.locations..alias

Alias directory for requests.

Type:
null or absolute path
Default:
null
services.misskey.reverseProxy.webserver.nginx.locations..basicAuth

Basic Auth protection for a vhost.

WARNING: This is implemented to store the password in plain text in the Nix store.

Type:
attribute set of string
Default:
{ }
services.misskey.reverseProxy.webserver.nginx.locations..basicAuthFile

Basic Auth password file for a vhost. Can be created by running {command}nix-shell --packages apacheHttpd --run 'htpasswd -B -c FILENAME USERNAME'.

Type:
null or absolute path
Default:
null
services.misskey.reverseProxy.webserver.nginx.locations..extraConfig

These lines go to the end of the location verbatim.

Type:
strings concatenated with "\n"
Default:
""
services.misskey.reverseProxy.webserver.nginx.locations..fastcgiParams

FastCGI parameters to override. Unlike in the Nginx configuration file, overriding only some default parameters won't unset the default values for other parameters.

Type:
attribute set of (string or absolute path)
Default:
{ }
services.misskey.reverseProxy.webserver.nginx.locations..index

Adds index directive.

Type:
null or string
Default:
null
services.misskey.reverseProxy.webserver.nginx.locations..priority

Order of this location block in relation to the others in the vhost. The semantics are the same as with lib.mkOrder. Smaller values have a greater priority.

Type:
signed integer
Default:
1000
services.misskey.reverseProxy.webserver.nginx.locations..proxyPass

Adds proxy_pass directive and sets recommended proxy headers if recommendedProxySettings is enabled.

Type:
null or string
Default:
null
services.misskey.reverseProxy.webserver.nginx.locations..proxyWebsockets

Whether to support proxying websocket connections with HTTP/1.1.

Type:
boolean
Default:
false
services.misskey.reverseProxy.webserver.nginx.locations..recommendedProxySettings

Enable recommended proxy settings.

Type:
boolean
Default:
config.services.nginx.recommendedProxySettings
services.misskey.reverseProxy.webserver.nginx.locations..recommendedUwsgiSettings

Enable recommended uwsgi settings.

Type:
boolean
Default:
config.services.nginx.recommendedUwsgiSettings
services.misskey.reverseProxy.webserver.nginx.locations..return

Adds a return directive, for e.g. redirections.

Type:
null or string or signed integer
Default:
null
services.misskey.reverseProxy.webserver.nginx.locations..root

Root directory for requests.

Type:
null or absolute path
Default:
null
services.misskey.reverseProxy.webserver.nginx.locations..tryFiles

Adds try_files directive.

Type:
null or string
Default:
null
services.misskey.reverseProxy.webserver.nginx.locations..uwsgiPass

Adds uwsgi_pass directive and sets recommended proxy headers if recommendedUwsgiSettings is enabled.

Type:
null or string
Default:
null
services.misskey.reverseProxy.webserver.nginx.onlySSL

Whether to enable HTTPS and reject plain HTTP connections. This will set defaults for listen to listen on all interfaces on port 443.

Type:
boolean
Default:
false
services.misskey.reverseProxy.webserver.nginx.quic

Whether to enable the QUIC transport protocol. This requires using pkgs.nginxQuic package which can be achieved by setting services.nginx.package = pkgs.nginxQuic;. Note that QUIC support is experimental and not yet recommended for production. Read more at https://quic.nginx.org/

Type:
boolean
Default:
false
services.misskey.reverseProxy.webserver.nginx.redirectCode

HTTP status used by globalRedirect and forceSSL. Possible usecases include temporary (302, 307) redirects, keeping the request method and body (307, 308), or explicitly resetting the method to GET (303). See https://developer.mozilla.org/en-US/docs/Web/HTTP/Redirections.

Type:
integer between 300 and 399 (both inclusive)
Default:
301
services.misskey.reverseProxy.webserver.nginx.rejectSSL

Whether to listen for and reject all HTTPS connections to this vhost. Useful in default server blocks to avoid serving the certificate for another vhost. Uses the ssl_reject_handshake directive available in nginx versions 1.19.4 and above.

Type:
boolean
Default:
false
services.misskey.reverseProxy.webserver.nginx.reuseport

Create an individual listening socket . It is required to specify only once on one of the hosts.

Type:
boolean
Default:
false
services.misskey.reverseProxy.webserver.nginx.root

The path of the web root directory.

Type:
null or absolute path
Default:
null
services.misskey.reverseProxy.webserver.nginx.serverAliases

Additional names of virtual hosts served by this virtual host configuration.

Type:
list of string
Default:
[ ]
services.misskey.reverseProxy.webserver.nginx.serverName

Name of this virtual host. Defaults to attribute name in virtualHosts.

Type:
null or string
Default:
null
services.misskey.reverseProxy.webserver.nginx.sslCertificate

Path to server SSL certificate.

Type:
absolute path
services.misskey.reverseProxy.webserver.nginx.sslCertificateKey

Path to server SSL certificate key.

Type:
absolute path
services.misskey.reverseProxy.webserver.nginx.sslTrustedCertificate

Path to root SSL certificate for stapling and client certificates.

Type:
null or absolute path
Default:
null
services.misskey.reverseProxy.webserver.nginx.useACMEHost

A host of an existing Let's Encrypt certificate to use. This is useful if you have many subdomains and want to avoid hitting the rate limit. Alternately, you can generate a certificate through {option}enableACME. Note that this option does not create any certificates, nor it does add subdomains to existing ones – you will need to create them manually using .

Type:
null or string
Default:
null
services.misskey.settings

Configuration for Misskey, see example.yml for all supported options.

Type:
attribute set of (YAML value)
services.misskey.settings.chmodSocket

The file access mode of the UNIX socket.

Type:
null or string
Default:
null
services.misskey.settings.db

Database settings.

Type:
submodule
Default:
{ }
services.misskey.settings.db.db

The database name.

Type:
string
Default:
"misskey"
services.misskey.settings.db.disableCache

Whether to disable caching queries.

Type:
boolean
Default:
false
services.misskey.settings.db.extra

Extra connection options.

Type:
null or (attribute set of (YAML value))
Default:
null
services.misskey.settings.db.host

The PostgreSQL host.

Type:
string
Default:
"/var/run/postgresql"
services.misskey.settings.db.pass

The password used for database authentication.

Type:
null or string
Default:
null
services.misskey.settings.db.port

The PostgreSQL port.

Type:
16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default:
5432
services.misskey.settings.db.user

The user used for database authentication.

Type:
string
Default:
"misskey"
services.misskey.settings.id

The ID generation method to use. Do not change after starting Misskey for the first time.

Type:
one of "aid", "aidx", "meid", "ulid", "objectid"
Default:
"aidx"
services.misskey.settings.meilisearch

Meilisearch connection options.

Type:
null or (submodule)
Default:
null
services.misskey.settings.meilisearch.apiKey

The Meilisearch API key.

Type:
null or string
Default:
null
services.misskey.settings.meilisearch.host

The Meilisearch host.

Type:
string
Default:
"localhost"
services.misskey.settings.meilisearch.index

Meilisearch index to use.

Type:
null or string
Default:
null
services.misskey.settings.meilisearch.port

The Meilisearch port.

Type:
16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default:
7700
services.misskey.settings.meilisearch.scope

The search scope.

Type:
one of "local", "global"
Default:
"local"
services.misskey.settings.meilisearch.ssl

Whether to connect via SSL.

Type:
boolean
Default:
false
services.misskey.settings.port

The port your Misskey server should listen on.

Type:
16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default:
3000
services.misskey.settings.redis

ioredis options. See README for reference.

Type:
attribute set of (YAML value)
Default:
{ }
services.misskey.settings.redis.host

The Redis host.

Type:
string
Default:
"localhost"
services.misskey.settings.redis.port

The Redis port.

Type:
16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default:
6379
services.misskey.settings.redisForJobQueue

ioredis options for the job queue. See README for reference.

Type:
null or (attribute set of (YAML value))
Default:
null
services.misskey.settings.redisForJobQueue.host

The Redis host.

Type:
string
Default:
"localhost"
services.misskey.settings.redisForJobQueue.port

The Redis port.

Type:
16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default:
6379
services.misskey.settings.redisForPubsub

ioredis options for pubsub. See README for reference.

Type:
null or (attribute set of (YAML value))
Default:
null
services.misskey.settings.redisForPubsub.host

The Redis host.

Type:
string
Default:
"localhost"
services.misskey.settings.redisForPubsub.port

The Redis port.

Type:
16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default:
6379
services.misskey.settings.redisForTimelines

ioredis options for timelines. See README for reference.

Type:
null or (attribute set of (YAML value))
Default:
null
services.misskey.settings.redisForTimelines.host

The Redis host.

Type:
string
Default:
"localhost"
services.misskey.settings.redisForTimelines.port

The Redis port.

Type:
16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default:
6379
services.misskey.settings.socket

The UNIX socket your Misskey server should listen on.

Type:
null or absolute path
Default:
null
services.misskey.settings.url

The final user-facing URL. Do not change after running Misskey for the first time.

This needs to match up with the configured reverse proxy and is automatically configured when using services.misskey.reverseProxy.

Type:
string