# Enable debug mode # Useful for debugging MSZ_DEBUG=1 # Database connection setting # This uses the Index library's DSN syntax # Currently Misuzu only supports MariaDB, or Null of course since that does nothing # # For normal TCP connection you can use the following syntax: #DATABASE_DSN="mariadb://username:password@hostname/dbname?charset=utf8mb4" # # For a UNIX socket connection you can use the following syntax: #DATABASE_DSN="mariadb://username:password@:unix:/dbname?socket=/path/to/mysqld.sock&charset=utf8mb4" # # And here's your unsensible default: DATABASE_DSN="null:" # Sentry error reporting setting # I have not idea this works, just shove the value Sentry gives you in here. # You can also leave it commented. #SENTRY_DSN="https://6e41e3a2507d1542fd1e9aaf54f05d87@o4505858016870400.ingest.sentry.io/4505858023751680" # Local storage path # This determines where uploaded files are stored. If left unset, the storage folder in the project tree will be used. #STORAGE_PATH_LOCAL="/path/to/storage" # Remote storage path # Path on which the storage folder is exposed to the web for NGINX. #STORAGE_PATH_REMOTE="/_storage" # Template cache directory # Writeable directory path to which template files are cached. #TEMPLATE_CACHE="/tmp/msz-tpl-cache" # Main user facing domain serving the website # If left unset, will default to localhost:9991 # MSZ_DOMAIN_WEB=flashii.net # API domain # If left unset, will default to localhost:9992 # MSZ_DOMAIN_API=api.flashii.net # URL shortening domain # If left unset, will default to localhost:9993 # MSZ_DOMAIN_SHORT=fii.moe # Uploads domains, comma separated # If left unset, will default to localhost:9994,localhost:9995 # MSZ_DOMAINS_UPLOADS=i.fii.moe,i.flashii.net