This commit is contained in:
parent
b80e8ebd8f
commit
f31b80d92b
2 changed files with 11 additions and 14 deletions
|
@ -47,18 +47,18 @@ Open your web browser and go to: http://localhost:9090
|
||||||
### 2. Complete Setup Wizard
|
### 2. Complete Setup Wizard
|
||||||
|
|
||||||
1. **Language Selection**: Choose your preferred language
|
1. **Language Selection**: Choose your preferred language
|
||||||
2. **Server Settings**:
|
2. **Server Settings**:
|
||||||
- Server Domain: `localhost` (default is fine)
|
- Server Domain and Server Host Name (FQDN): `localhost`
|
||||||
- Keep other defaults
|
- Keep other defaults
|
||||||
3. **Database Settings**:
|
3. **Database Settings**:
|
||||||
- Choose "Embedded Database" for development
|
- Choose "Embedded Database" for development
|
||||||
- This creates a local database that persists in Docker volumes
|
- This creates a local database that persists in Docker volumes
|
||||||
4. **Profile Settings**:
|
4. **Profile Settings**:
|
||||||
- Choose "Default" (no LDAP needed for development)
|
- Choose "Default" (no LDAP needed for development)
|
||||||
5. **Administrator Account**:
|
5. **Administrator Account**:
|
||||||
- Username: `admin`
|
|
||||||
- Password: `admin` (for development consistency)
|
|
||||||
- Email: `admin@localhost`
|
- Email: `admin@localhost`
|
||||||
|
- Password: `admin` (for development consistency)
|
||||||
|
6. When finishing setup the server will be non-responsive for a minute
|
||||||
|
|
||||||
### 3. Create Test User
|
### 3. Create Test User
|
||||||
|
|
||||||
|
@ -83,13 +83,8 @@ For testing Multi-User Chat functionality, create a test room:
|
||||||
- **Room ID**: `test1`
|
- **Room ID**: `test1`
|
||||||
- **Room Name**: `Test Room 1`
|
- **Room Name**: `Test Room 1`
|
||||||
- **Description**: `Test room for XMPP bridge development`
|
- **Description**: `Test room for XMPP bridge development`
|
||||||
- **Subject**: `Development Test Room`
|
3. Leave rest as defaults.
|
||||||
3. Configure room settings:
|
4. Click **Save changes**
|
||||||
- **Room Type**: Public (searchable and accessible)
|
|
||||||
- **Persistent**: Yes (room survives server restarts)
|
|
||||||
- **Max occupants**: 50 (or leave default)
|
|
||||||
- **Enable**: Yes
|
|
||||||
4. Click **Create Room**
|
|
||||||
|
|
||||||
The room will be accessible as `test1@conference.localhost` for testing MUC operations.
|
The room will be accessible as `test1@conference.localhost` for testing MUC operations.
|
||||||
|
|
||||||
|
@ -169,4 +164,4 @@ go run cmd/xmpp-client-doctor/main.go \
|
||||||
- The server uses self-signed certificates, so the doctor tool defaults to `-insecure-skip-verify=true`
|
- The server uses self-signed certificates, so the doctor tool defaults to `-insecure-skip-verify=true`
|
||||||
- All data persists between container restarts unless you run `make devserver_clean`
|
- All data persists between container restarts unless you run `make devserver_clean`
|
||||||
- The PostgreSQL and Adminer services are included but optional (you can use embedded database)
|
- The PostgreSQL and Adminer services are included but optional (you can use embedded database)
|
||||||
- The server takes ~30 seconds to fully start up after `docker compose up`
|
- The server takes ~30 seconds to fully start up after `docker compose up`
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
name: xmpp-bridge-openfire
|
||||||
|
|
||||||
services:
|
services:
|
||||||
openfire:
|
openfire:
|
||||||
image: nasqueron/openfire:4.7.1
|
image: nasqueron/openfire:4.7.1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue