diff options
Diffstat (limited to 'integrations/pgsql.ini')
-rw-r--r-- | integrations/pgsql.ini | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/integrations/pgsql.ini b/integrations/pgsql.ini new file mode 100644 index 0000000000..42e29e8266 --- /dev/null +++ b/integrations/pgsql.ini @@ -0,0 +1,56 @@ +APP_NAME = Gitea: Git with a cup of tea +RUN_MODE = prod + +[database] +DB_TYPE = postgres +HOST = 127.0.0.1:5432 +NAME = testgitea +USER = postgres +PASSWD = postgres +SSL_MODE = disable +PATH = data/gitea.db + +[repository] +ROOT = integrations/gitea-integration/gitea-repositories + +[server] +SSH_DOMAIN = localhost +HTTP_PORT = 3000 +ROOT_URL = http://localhost:3000/ +DISABLE_SSH = false +SSH_PORT = 22 +LFS_START_SERVER = false +OFFLINE_MODE = false + +[mailer] +ENABLED = false + +[service] +REGISTER_EMAIL_CONFIRM = false +ENABLE_NOTIFY_MAIL = false +DISABLE_REGISTRATION = false +ENABLE_CAPTCHA = false +REQUIRE_SIGNIN_VIEW = false +DEFAULT_KEEP_EMAIL_PRIVATE = false +NO_REPLY_ADDRESS = noreply.example.org + +[picture] +DISABLE_GRAVATAR = false +ENABLE_FEDERATED_AVATAR = false + +[session] +PROVIDER = file + +[log] +MODE = console,file + +[log.console] +LEVEL = Warn + +[log.file] +LEVEL = Info +ROOT_PATH = log + +[security] +INSTALL_LOCK = true +SECRET_KEY = 9pCviYTWSb |