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_HOST="postgresql" # docker container name or external hostname/IP
|
||||||
POSTGRESQL_USER="postgres"
|
POSTGRESQL_USER="postgres"
|
||||||
POSTGRESQL_PASSWORD="fake"
|
POSTGRESQL_PASSWORD="df7c6935a6ff"
|
||||||
POSTGRESQL_DBNAME="bewcloud"
|
POSTGRESQL_DBNAME="bewcloud"
|
||||||
POSTGRESQL_PORT=5432
|
POSTGRESQL_PORT=5432
|
||||||
POSTGRESQL_CAFILE=""
|
POSTGRESQL_CAFILE=""
|
||||||
|
|
||||||
JWT_SECRET="fake"
|
JWT_SECRET="zfl655gcdax8hg9dp5fb47qk2"
|
||||||
PASSWORD_SALT="fake"
|
PASSWORD_SALT="5a9bbb7d546"
|
||||||
|
EOF
|
||||||
MFA_KEY="fake" # optional, if you want to enable multi-factor authentication
|
MFA_KEY="fake" # optional, if you want to enable multi-factor authentication
|
||||||
MFA_SALT="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/
|
data-files/
|
||||||
|
|
||||||
# Config
|
# Config
|
||||||
bewcloud.config.ts
|
|
||||||
|
|
||||||
# Radicale files
|
# Radicale files
|
||||||
data-radicale/
|
data-radicale/
|
||||||
|
|||||||
@@ -3,8 +3,8 @@ import { Config, PartialDeep } from './lib/types.ts';
|
|||||||
/** Check the Config type for all the possible options and instructions. */
|
/** Check the Config type for all the possible options and instructions. */
|
||||||
const config: PartialDeep<Config> = {
|
const config: PartialDeep<Config> = {
|
||||||
auth: {
|
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")
|
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: 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
|
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)
|
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
|
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)
|
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',
|
// host: 'localhost',
|
||||||
// port: 465,
|
// port: 465,
|
||||||
// },
|
// },
|
||||||
// contacts: {
|
contacts: {
|
||||||
// enableCardDavServer: true,
|
enableCardDavServer: true,
|
||||||
// cardDavUrl: 'http://radicale:5232',
|
cardDavUrl: 'http://cloud-radicale-wqldcv:5232',
|
||||||
// },
|
},
|
||||||
// calendar: {
|
calendar: {
|
||||||
// enableCalDavServer: true,
|
enableCalDavServer: true,
|
||||||
// calDavUrl: 'http://radicale:5232',
|
calDavUrl: 'http://cloud-radicale-wqldcv:5232',
|
||||||
// },
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export default config;
|
export default config;
|
||||||
@@ -16,7 +16,7 @@ services:
|
|||||||
image: postgres:17
|
image: postgres:17
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_USER=postgres
|
- POSTGRES_USER=postgres
|
||||||
- POSTGRES_PASSWORD=fake
|
- POSTGRES_PASSWORD=df7c6935a6ff
|
||||||
- POSTGRES_DB=bewcloud
|
- POSTGRES_DB=bewcloud
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
Reference in New Issue
Block a user