We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9306982 commit a3367adCopy full SHA for a3367ad
docker-compose.yml
@@ -40,8 +40,8 @@ services:
40
- NJS_ACME_VERIFY_PROVIDER_HTTPS=false # only in development environment
41
- NJS_ACME_DIRECTORY_URI=https://pebble/dir # development server
42
ports:
43
- - 8000:80
44
- - 4443:443
+ - 8000:8000 # http
+ - 8443:8443 # https
45
networks:
46
default:
47
aliases:
examples/nginx.conf
@@ -38,8 +38,8 @@ http {
38
js_shared_dict_zone zone=acme:1m;
39
server {
- listen 80;
- listen 443 ssl;
+ listen 8000;
+ listen 8443 ssl;
server_name _default;
## Mandatory Variables
0 commit comments