diff options
| author | Arseney300 <Arseney300@gmail.com> | 2026-02-20 08:25:03 +0700 |
|---|---|---|
| committer | Arseney300 <Arseney300@gmail.com> | 2026-02-20 08:25:03 +0700 |
| commit | 86db5f93457ed0e6e014fa58a3bfe80a67b194b0 (patch) | |
| tree | 01f5963c0eaa41e49c64142b8dec26bb1c05c03e /nginx | |
| parent | ed9b6f12b63c1cf38fb4c675da31cdec604bf1d6 (diff) | |
Fix nginx port mappings broken by comment indentation
The commented-out 8000 port had extra indentation that made YAML
parse it as part of the 80:80 value, causing no ports to be published.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'nginx')
| -rw-r--r-- | nginx/docker-compose.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nginx/docker-compose.yaml b/nginx/docker-compose.yaml index 7917bed..421c3c0 100644 --- a/nginx/docker-compose.yaml +++ b/nginx/docker-compose.yaml @@ -5,7 +5,7 @@ services: image: nginx:latest ports: - 80:80 - #- 8000:8000 + #- 8000:8000 - 443:443 restart: always volumes: |
