exam questions

Exam 350-901 All Questions

View all questions & answers for the 350-901 exam

Exam 350-901 topic 1 question 180 discussion

Actual exam question from Cisco's 350-901
Question #: 180
Topic #: 1
[All 350-901 Questions]


Refer to the exhibit. A developer must configure an SSL certificate for an nginx web server. Which code must be added on the script to accomplish this configuration?
A.

B.

C.

D.

Show Suggested Answer Hide Answer
Suggested Answer: C

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Teringzooi
1 year, 8 months ago
Correct answer: C
upvoted 3 times
Teringzooi
1 year, 8 months ago
server { listen 443 ssl; server_name www.example.com; ssl_certificate www.example.com.crt; ssl_certificate_key www.example.com.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5; ... } http://nginx.org/en/docs/http/configuring_https_servers.html
upvoted 3 times
...
...
__al__
2 years, 2 months ago
wouldn't B also work?
upvoted 1 times
Teringzooi
1 year, 8 months ago
no, just no. server { listen 443 ssl; server_name www.example.com; ssl_certificate www.example.com.crt; ssl_certificate_key www.example.com.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5; ... }
upvoted 2 times
julianmansa
6 months, 1 week ago
no, just no lol
upvoted 1 times
...
...
QuiShong
1 year, 11 months ago
Not really sure, but configuring 443 without the ssl statement makes it basically HTTP on port 443.
upvoted 2 times
...
...
RukiaTester
2 years, 2 months ago
C. From: http://nginx.org/en/docs/http/configuring_https_servers.html server { listen 443 ssl; server_name www.example.com; ssl_certificate www.example.com.crt; ssl_certificate_key www.example.com.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5; ... }
upvoted 4 times
...
udo2020
2 years, 5 months ago
I agree to C. server { listen 443 ssl; server_name www.example.com; ssl_certificate www.example.com.crt; ssl_certificate_key www.example.com.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5;
upvoted 4 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...