Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dpbm/home-server
My RaspberryPi Home Server configuration
https://github.com/dpbm/home-server
adguard gitpod home-server iot jellyfin local-network media-server network portainer raspberry-pi server
Last synced: about 22 hours ago
JSON representation
My RaspberryPi Home Server configuration
- Host: GitHub
- URL: https://github.com/dpbm/home-server
- Owner: Dpbm
- Created: 2024-07-04T02:55:10.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-07-24T17:54:42.000Z (4 months ago)
- Last Synced: 2024-07-24T20:37:31.095Z (4 months ago)
- Topics: adguard, gitpod, home-server, iot, jellyfin, local-network, media-server, network, portainer, raspberry-pi, server
- Language: Shell
- Homepage: https://dpbm.github.io/home-server/
- Size: 323 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Home Server Setup
This project aims to store all the configurations I've been doing in my mini home server.
Till now, the server consists in a single raspberry pi 3B with a TFT 3.2' screen and a external HD attached. This one, is using the Raspberry pi OS (Bullseye).
In that, I'm running some docker containers which can be accessed through my whole home network. The containers are:
- Jellyfin
- Portainer
- GitPod
- AdGuardHome
- Nextcloud## Setup
To setup a server like this one, first install the Raspberry pi OS (Bullseye) 64-Bit, to do that you may use the [rpi-imager](https://www.raspberrypi.com/software/) or, if you prefer, download the `img` file and flash it to your SD Card using another software of your preference.
![rpi-imager - flashing the system](./assets/pi%20imager.png)
Then plug your SD card into your Raspberry pi, configure your network, and then your ssh connection.
```bash
sudo raspi-config# then go to Interfacing Options > SSH
```After that, ensure you configured the ssh for key only logging, you can understand it better [here](https://www.digitalocean.com/community/tutorials/how-to-configure-ssh-key-based-authentication-on-a-linux-server).
Doing that, you can use ssh to connect remotely to your server using `putty` or command line:
```bash
ssh username@the-ip-of-your-raspberry-pi
```Finally, run the script:
```bash
#in your raspberry pi
git clone https://github.com/Dpbm/home-server
cd ./home-server/
chmod +x setup.sh
./setup.sh
```At the end of the process, your raspberry pi will reboot to apply all the changes.
`Note: the process set a static ip for your server, ensure you fixed it in your router configurations, and also that the selected ip will not collide with other devices' ips`
## Accessing services
To access the server's services, you can go to:
- `http://your-raspbery-pi-ip:8096/` for `Jellyfin`
- `https://your-raspbery-pi-ip:9443/` for `Portainer`
- `https://your-raspbery-pi-ip:3004/` for `GitPod`
- `https://your-raspbery-pi-ip:3333/` for `Nextcloud`
- `https://your-raspbery-pi-ip:3000/` for `AdGuardHome` `obs (the port 3000 may change after further configurations)`