File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 44 push :
55 branches :
66 - ' master'
7+ workflow_dispatch :
78
89jobs :
910 check_server :
3738 run : cargo test -p tests --test starter -j 1 -- --test-threads 1
3839 - name : run pebble
3940 run : ./run_pebble.sh
40- working-directory : ./tests/data/pebble
41+ working-directory : ./tests/bash/
4142 - name : run acme integration test
4243 run : cargo test -p tests --test acme_test -j 1 -- --test-threads 1
Original file line number Diff line number Diff line change @@ -60,6 +60,9 @@ impl Config {
6060 warn ! ( "acme needs http port:80 to signed https certificate" ) ;
6161 }
6262 }
63+ if config. domains . iter ( ) . any ( |x| !get_host_path_from_domain ( & x. domain ) . 1 . is_empty ( ) ) {
64+ bail ! ( "domains.domain do not support sub path like 'www.example.com/abc' now" )
65+ }
6366 Ok ( config)
6467 }
6568}
You can’t perform that action at this time.
0 commit comments