Nginx local ssl

This commit is contained in:
Alejandro Sarmiento
2024-03-05 23:04:51 +01:00
parent 798a8214a7
commit 774b27278d
7 changed files with 97 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
version: '3.8'
services:
nginx:
image: nginx:latest
container_name: nginx-local
ports:
- "16080:80"
- "16443:443"
volumes:
- ./html:/usr/share/nginx/html
- ./conf:/etc/nginx/conf.d
- ./ssl:/etc/nginx/ssl
restart: unless-stopped