Skip to content

Commit

Permalink
http only.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdebock committed Jul 31, 2021
1 parent 7327e4d commit d56b7d1
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions molecule/default/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
timeout: 2
loop:
- "8080"
- "8443"
# - "8443"

- name: place sample index.html
ansible.builtin.copy:
Expand All @@ -23,13 +23,11 @@

- name: see if the sample index.html returns 200
ansible.builtin.uri:
url: "https://127.0.0.1:8443/"
validate_certs: no
url: "http://127.0.0.1:8080/"

- name: see if TRACE option returns 405
ansible.builtin.uri:
url: "https://127.0.0.1:8443/"
url: "http://127.0.0.1:8080/"
method: TRACE
status_code:
- 405
validate_certs: no

0 comments on commit d56b7d1

Please sign in to comment.