Last active
February 25, 2019 16:40
-
-
Save dmytrostriletskyi/d5e66f4969bf081fb906d714dfbfda6b to your computer and use it in GitHub Desktop.
comodo challenge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user www-data; | |
worker_processes auto; | |
pid /run/nginx.pid; | |
events { | |
worker_connections 768; | |
} | |
http { | |
access_log /var/log/nginx/access.log; | |
error_log /var/log/nginx/error.log; | |
server { | |
location = /.well-known/pki-validation/comodohashfile.txt { | |
alias /var/www/comodo/comodohashfile.txt; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment