File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- ' master'
7
+ workflow_dispatch :
7
8
8
9
jobs :
9
10
check_server :
37
38
run : cargo test -p tests --test starter -j 1 -- --test-threads 1
38
39
- name : run pebble
39
40
run : ./run_pebble.sh
40
- working-directory : ./tests/data/pebble
41
+ working-directory : ./tests/bash/
41
42
- name : run acme integration test
42
43
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 {
60
60
warn ! ( "acme needs http port:80 to signed https certificate" ) ;
61
61
}
62
62
}
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
+ }
63
66
Ok ( config)
64
67
}
65
68
}
You can’t perform that action at this time.
0 commit comments