Credentials
Security Warning
These are development credentials only. Never use in production.
SSH Access
bash
# SSH connection
ssh -i "esign.pem" ubuntu@16.171.135.212
# Key file location
D:\gsign-master-prompts\esign.pem (local)| Parameter | Value |
|---|---|
| Host | 16.171.135.212 |
| User | ubuntu |
| Key | esign.pem |
GitLab
| Parameter | Value |
|---|---|
| URL | https://gitlab.gesign.mn |
| Username | root |
| Password | 0g00QJVCPICFULDzEihcmGH8G+N4LN9s6yzVVJih/o0= |
| API Token | glpat-oP99QZkSuYOyH7Pgudg6FG86MQp1OjEH.01.0w1xfott5 |
Git Push with Token
bash
git remote set-url origin https://oauth2:glpat-oP99QZkSuYOyH7Pgudg6FG86MQp1OjEH.01.0w1xfott5@gitlab.gesign.mn/root/gsign-master-prompts.git
git push origin masterDatabases
PostgreSQL
| Parameter | Value |
|---|---|
| Host | localhost (or gsign-postgres) |
| Port | 5432 |
| Database | gsign |
| Username | gsign |
| Password | gsign_dev_2026 |
bash
# Connection string
postgresql://gsign:gsign_dev_2026@localhost:5432/gsignMongoDB
| Parameter | Value |
|---|---|
| Host | localhost (or gsign-mongodb) |
| Port | 27017 |
| Database | gsign |
| Username | gsign |
| Password | gsign_dev_2026 |
bash
# Connection string
mongodb://gsign:gsign_dev_2026@localhost:27017/gsignRedis
| Parameter | Value |
|---|---|
| Host | localhost (or gsign-redis) |
| Port | 6379 |
| Password | gsign_dev_2026 |
bash
# Connection string
redis://:gsign_dev_2026@localhost:6379Monitoring
Grafana
| Parameter | Value |
|---|---|
| URL | https://grafana.gesign.mn |
| Username | admin |
| Password | gsign_dev_2026 |
Prometheus
| Parameter | Value |
|---|---|
| URL | https://prometheus.gesign.mn |
| Auth | None (internal only) |
Database Tools
| Tool | URL | Credentials |
|---|---|---|
| Adminer | https://pgadmin.gesign.mn | (DB credentials) |
| Mongo Express | https://mongo.gesign.mn | (DB credentials) |
| Redis Commander | https://redis.gesign.mn | (Redis password) |
Container Registry
| Parameter | Value |
|---|---|
| URL | registry.gesign.mn:5005 |
| Username | root |
| Password | (GitLab password) |
Environment Variables
bash
# Backend (.env)
DATABASE_URL=postgresql://gsign:gsign_dev_2026@gsign-postgres:5432/gsign
MONGODB_URI=mongodb://gsign:gsign_dev_2026@gsign-mongodb:27017/gsign
REDIS_URL=redis://:gsign_dev_2026@gsign-redis:6379
JWT_SECRET=your-jwt-secret-here
KEY_ENCRYPTION_KEY=12345678901234567890123456789012
# Frontend (.env.local)
NEXT_PUBLIC_API_URL=https://api.gesign.mn