https://github.com/71zenith/server-config
Docker files for my server
https://github.com/71zenith/server-config
Last synced: about 1 year ago
JSON representation
Docker files for my server
- Host: GitHub
- URL: https://github.com/71zenith/server-config
- Owner: 71zenith
- License: gpl-3.0
- Created: 2023-11-07T05:36:17.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-21T05:05:01.000Z (over 2 years ago)
- Last Synced: 2025-03-30T22:14:12.820Z (over 1 year ago)
- Language: Shell
- Size: 68.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# server-config
Dotfiles and Docker files for easy deployment of software on my server
## defaults for configs
| software | user/pass | port(internal) |
| ----------- | ---------------- | ----------- |
| npm | `admin@example.com/changeme` | 81 |
| syncthing | | 8384 | |
| sws | | 80 |
| gitea | | 3000 |
| roundcube | | 80 |
| vaultwarden | | 80 |
| nextcloud | | 8081,11000 |
| code-server | `password` | 8443 |
| calibre | | 8082 |
| dashy | | 80 |
| minecraft | zen | 25565 |
| portainer | | 9443 |
| wireguard | | 51821 |
## ports to be opened
```sh
ports="81 9443 80 443 8082 11000 8081"
for i in $ports; do
sudo ufw allow $i
done
```