This is the official repository for the Toasted Den website. The website provides contact information for Toasted Den, including business inquiries and direct contact details.
Main page (index.html
)
Site info page (info.html
)
Universal 404 error page (404.html
)
ToastBot redirect (toastbot.html
)
1. Install Docker and Docker Compose.
2. Clone this repository to your local machine:
git clone https://github.com/toastedden/toasted-den-website.git
cd toasted-den-website
3. Start the containers in detached mode:
docker compose up -d
And navigate to http://localhost:2712 to view the site.
The container will also spin up an API server via node.js to count website visits.
You can host or reverse proxy the site as needed.
(Make sure to properlly configure ./website./nginx/nginx.conf
for reverse proxy)
5. Firewall Configuration (Debian-based systems):
Remember to add a firewall rule for the ports you will be using to host the site. In this case, we're using ports 2712
and 3000
. On a Debian-based operating system, add the firewall rules by running the following commands:
ufw allow 2712
ufw allow 3000
ufw enable
ufw reload # reload the ufw if it's already enabled
Check the status of your firewall to ensure the ports are open:
ufw status
If you think you can enhance or optimize the site, feel free to make a pull request!
This project is licensed under the CC0-1.0 License - see the LICENSE file for details.