Skip to content

Commit

Permalink
fix dev environment port configurration
Browse files Browse the repository at this point in the history
  • Loading branch information
zsteinkamp committed Mar 19, 2024
1 parent 9306982 commit a3367ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ services:
- NJS_ACME_VERIFY_PROVIDER_HTTPS=false # only in development environment
- NJS_ACME_DIRECTORY_URI=https://pebble/dir # development server
ports:
- 8000:80
- 4443:443
- 8000:8000 # http
- 8443:8443 # https
networks:
default:
aliases:
Expand Down
4 changes: 2 additions & 2 deletions examples/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ http {
js_shared_dict_zone zone=acme:1m;

server {
listen 80;
listen 443 ssl;
listen 8000;
listen 8443 ssl;
server_name _default;

## Mandatory Variables
Expand Down

0 comments on commit a3367ad

Please sign in to comment.