https://github.com/biladina/docker-nginx-proxy
https://github.com/biladina/docker-nginx-proxy
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/biladina/docker-nginx-proxy
- Owner: biladina
- Created: 2023-05-12T09:01:33.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-10T07:48:34.000Z (about 1 year ago)
- Last Synced: 2025-01-13T16:50:46.086Z (9 months ago)
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## DEVELOPMENT ONLY
1. you can create your own local domain, eg. `aplikasi.test` and setting up the local domain using your OS localhost domain2. if you need HTTPS support, use this site to create custom SSL certificate for your local domain: [https://regery.com/en/security/ssl-tools/self-signed-certificate-generator](https://regery.com/en/security/ssl-tools/self-signed-certificate-generator)
3. from step no. 2 you need two things, domain SSL certificate and domain private key. Make sure you rename them using your local domain, example:
```bash
# your domain is: aplikasi.test
aplikasi.test.crt (*.crt file is for domain SSL certificate)
aplikasi.test.key (*.key file is for domain private key)
```4. if you already run this project, you can stop the container by run this command:
```bash
docker stop nginx-proxy
docker stop nginx-gen
```5. you can copy the `.crt` and `.key` file to `certs` directory
6. after you copy the `.crt` and `.key` file, if you already run this project, you can start again the container by run this command:
```bash
docker start nginx-proxy
docker start nginx-gen
```7. if you don't need HTTPS support, you can skip step 2-6
8. after that, you can run/rebuild your own container project
9. if you never run this project before, go to [RUN PROJECT](#run-project)
## RUN PROJECT
1. create docker network with name `nginx-proxy````bash
docker network create -d bridge nginx-proxy
```2. go to your docker compose file in your project, add this line to your docker compose environment:
```yaml
# example for your domain is: aplikasi.test
services:
your_project_container:
environment:
TZ: "Asia/Jakarta"
VIRTUAL_HOST: aplikasi.test
VIRTUAL_PORT: 80
LETSENCRYPT_HOST: aplikasi.test # this variable is for production and if you want to use letsencrypt as your SSL certificate authority, skip this variable for development
LETSENCRYPT_EMAIL: use_your_own_mail # this variable is for production and if you want to use letsencrypt as your SSL certificate authority, skip this variable for development
networks:
default:
name: nginx-proxy
external: true
```2. for development, use this command to run the proxy container:
```bash
docker compose -f docker-compose.yml build --no-cache && docker compose -f docker-compose.yml up -d
```3. for production, use this command to run the proxy container:
```bash
docker compose -f docker-compose.yml -f docker-compose-prod.yml build --no-cache && docker compose -f docker-compose.yml -f docker-compose-prod.yml up -d
```4. after that, you can run/rebuild your own container project