Compare commits
6 Commits
3fdda5b34e
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 29cd7dce82 | |||
|
|
6f8a27df64 | ||
|
|
137ac0eb58 | ||
|
|
521bd5f05c | ||
|
|
747874c925 | ||
|
|
8889eb10ce |
@@ -2,14 +2,14 @@ PORT=8000
|
||||
|
||||
POSTGRESQL_HOST="postgresql" # docker container name or external hostname/IP
|
||||
POSTGRESQL_USER="postgres"
|
||||
POSTGRESQL_PASSWORD="fake"
|
||||
POSTGRESQL_PASSWORD="df7c6935a6ff"
|
||||
POSTGRESQL_DBNAME="bewcloud"
|
||||
POSTGRESQL_PORT=5432
|
||||
POSTGRESQL_CAFILE=""
|
||||
|
||||
JWT_SECRET="fake"
|
||||
PASSWORD_SALT="fake"
|
||||
|
||||
JWT_SECRET="zfl655gcdax8hg9dp5fb47qk2"
|
||||
PASSWORD_SALT="5a9bbb7d546"
|
||||
EOF
|
||||
MFA_KEY="fake" # optional, if you want to enable multi-factor authentication
|
||||
MFA_SALT="fake" # optional, if you want to enable multi-factor authentication
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -14,7 +14,7 @@ db/
|
||||
data-files/
|
||||
|
||||
# Config
|
||||
bewcloud.config.ts
|
||||
|
||||
|
||||
# Radicale files
|
||||
data-radicale/
|
||||
|
||||
@@ -3,8 +3,8 @@ import { Config, PartialDeep } from './lib/types.ts';
|
||||
/** Check the Config type for all the possible options and instructions. */
|
||||
const config: PartialDeep<Config> = {
|
||||
auth: {
|
||||
baseUrl: 'http://localhost:8000', // The base URL of the application you use to access the app, i.e. "http://localhost:8000" or "https://cloud.example.com" (note authentication won't work without https:// except for localhost; SSO redirect, if enabled, will be this + /oidc/callback, so "https://cloud.example.com/oidc/callback")
|
||||
allowSignups: false, // If true, anyone can sign up for an account. Note that it's always possible to sign up for the first user, and they will be an admin
|
||||
baseUrl: 'https://cloud.bendtstudio.com', // The base URL of the application you use to access the app, i.e. "http://localhost:8000" or "https://cloud.example.com" (note authentication won't work without https:// except for localhost; SSO redirect, if enabled, will be this + /oidc/callback, so "https://cloud.example.com/oidc/callback")
|
||||
allowSignups: true, // If true, anyone can sign up for an account. Note that it's always possible to sign up for the first user, and they will be an admin
|
||||
enableEmailVerification: false, // If true, email verification will be required for signups (using SMTP settings below)
|
||||
enableForeverSignup: true, // If true, all signups become active for 100 years
|
||||
enableMultiFactor: false, // If true, users can enable multi-factor authentication (TOTP, Passkeys, or Email if the SMTP settings below are set)
|
||||
@@ -33,14 +33,14 @@ const config: PartialDeep<Config> = {
|
||||
// host: 'localhost',
|
||||
// port: 465,
|
||||
// },
|
||||
// contacts: {
|
||||
// enableCardDavServer: true,
|
||||
// cardDavUrl: 'http://radicale:5232',
|
||||
// },
|
||||
// calendar: {
|
||||
// enableCalDavServer: true,
|
||||
// calDavUrl: 'http://radicale:5232',
|
||||
// },
|
||||
contacts: {
|
||||
enableCardDavServer: true,
|
||||
cardDavUrl: 'http://cloud-radicale-wqldcv:5232',
|
||||
},
|
||||
calendar: {
|
||||
enableCalDavServer: true,
|
||||
calDavUrl: 'http://cloud-radicale-wqldcv:5232',
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
@@ -16,7 +16,7 @@ services:
|
||||
image: postgres:17
|
||||
environment:
|
||||
- POSTGRES_USER=postgres
|
||||
- POSTGRES_PASSWORD=fake
|
||||
- POSTGRES_PASSWORD=df7c6935a6ff
|
||||
- POSTGRES_DB=bewcloud
|
||||
restart: always
|
||||
volumes:
|
||||
|
||||
Reference in New Issue
Block a user