https://github.com/sfneal/nginx-proxy
Nginx reverse proxy server for Dockerized web application.
https://github.com/sfneal/nginx-proxy
docker nginx proxy reverse-proxy
Last synced: about 2 months ago
JSON representation
Nginx reverse proxy server for Dockerized web application.
- Host: GitHub
- URL: https://github.com/sfneal/nginx-proxy
- Owner: sfneal
- License: mit
- Created: 2019-07-22T20:09:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2025-08-24T08:01:53.000Z (10 months ago)
- Last Synced: 2025-08-24T14:46:39.936Z (10 months ago)
- Topics: docker, nginx, proxy, reverse-proxy
- Language: Shell
- Homepage:
- Size: 249 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# sfneal/nginx-proxy
[](https://travis-ci.com/sfneal/nginx-proxy)
[](https://hub.docker.com/r/stephenneal/nginx-proxy)
[](https://hub.docker.com/r/stephenneal/nginx-proxy)
nginx-proxy is a Nginx reverse proxy Docker image for proxying requests to webserver containers & returning responses.
## Installation
Docker images can be pulled using the Docker CLI.
```bash
docker pull stephenneal/nginx-proxy:1.19-alpine-v1
```
## Usage
Add a 'proxy' container for proxying requests to your 'webserver' containers.
```yaml
proxy:
image: stephenneal/nginx-proxy:1.19-alpine-v1
container_name: proxy
volumes:
- certs:/etc/letsencrypt
environment:
- validation_domain=validation.example.com
- domain=localhost:webserver example.com:webserver
- cache_enabled=1 # enable static content caching
ports:
- 80:80
- 443:443
depends_on:
- certbot
networks:
- app-network
```
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
### Security
If you discover any security related issues, please email stephen.neal14@gmail.com instead of using the issue tracker.
## Credits
- [Stephen Neal](https://github.com/sfneal)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.