https://github.com/studiowebux/proxy
Simple proxy for my self hosted services
https://github.com/studiowebux/proxy
automation docker docker-compose letsencrypt nginx proxy
Last synced: 2 months ago
JSON representation
Simple proxy for my self hosted services
- Host: GitHub
- URL: https://github.com/studiowebux/proxy
- Owner: studiowebux
- Created: 2024-10-10T00:03:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-02T15:39:15.000Z (11 months ago)
- Last Synced: 2025-08-02T17:38:47.400Z (11 months ago)
- Topics: automation, docker, docker-compose, letsencrypt, nginx, proxy
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Studiowebux Proxy
```bash
docker network create -d bridge proxy
docker compose up -d
```
## Set custom configs per vhost
https://github.com/nginx-proxy/nginx-proxy/tree/main/docs#custom-nginx-configuration
For example, set the body size to 512m for pixel-it:
```bash
docker run --rm -it -v /var/lib/docker/volumes/proxy_vhost/_data:/etc/nginx/vhost.d nginxproxy/nginx-proxy bash
{ echo 'server_tokens off;'; echo 'client_max_body_size 512m;'; } > /etc/nginx/vhost.d/pixel-it.webuxlab.com
```