Advertisement
seiburii

SSL - LetsEncrypt - Invalid Response

Apr 23rd, 2018
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. root@WebDev:/usr/share/davical# sudo certbot --apache -d calendar.seipc.co.uk
  2. Saving debug log to /var/log/letsencrypt/letsencrypt.log
  3. Plugins selected: Authenticator apache, Installer apache
  4. Starting new HTTPS connection (1): acme-v01.api.letsencrypt.org
  5. Obtaining a new certificate
  6. Performing the following challenges:
  7. http-01 challenge for calendar.seipc.co.uk
  8. Enabled Apache rewrite module
  9. Waiting for verification...
  10. Cleaning up challenges
  11. Failed authorization procedure. calendar.seipc.co.uk (http-01): urn:acme:error:unauthorized :: The client lacks sufficient authorization :: Invalid response from http://calendar.seipc.co.uk/.well-known/acme-challenge/FXzSR5k5rB6uRgxbP5elCNNEtbgvqXk_VRtdQvP7FHg: "
  12. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  13. "http://www.w3.org/TR/html4/strict.dtd">
  14. <html>
  15.  
  16. <head>
  17. <title>cal"
  18.  
  19. IMPORTANT NOTES:
  20. - The following errors were reported by the server:
  21.  
  22. Domain: calendar.seipc.co.uk
  23. Type: unauthorized
  24. Detail: Invalid response from
  25. http://calendar.seipc.co.uk/.well-known/acme-challenge/FXzSR5k5rB6uRgxbP5elCNNEtbgvqXk_VRtdQvP7FHg:
  26. "
  27. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  28. "http://www.w3.org/TR/html4/strict.dtd">
  29. <html>
  30.  
  31. <head>
  32. <title>cal"
  33.  
  34. To fix these errors, please make sure that your domain name was
  35. entered correctly and the DNS A/AAAA record(s) for that domain
  36. contain(s) the right IP address.
  37. root@WebDev:/usr/share/davical# cat /etc/apache2/sites-available/davical.conf
  38. <VirtualHost *:80>
  39. ServerName calendar.seipc.co.uk
  40. ServerAdmin webmaster@somewhere.com
  41.  
  42. DocumentRoot /usr/share/davical/htdocs
  43.  
  44. DirectoryIndex index.php index.html
  45.  
  46. Alias /images/ /usr/share/davical/htdocs/images/
  47.  
  48. <Directory /usr/share/davical/htdocs/>
  49. AllowOverride None
  50. Order allow,deny
  51. Allow from all
  52. </Directory>
  53. AcceptPathInfo On
  54.  
  55. # dont use following lines unless using older PHP versions
  56. # php_value include_path /usr/share/awl/inc
  57. # php_value magic_quotes_gpc 0
  58. # php_value register_globals 0
  59. # php_value error_reporting "E_ALL & ~E_NOTICE"
  60. # php_value default_charset "utf-8"
  61. </VirtualHost>
  62.  
  63. <VirtualHost *:443>
  64. ServerName calendar.seipc.co.uk
  65. ServerAdmin webmaster@somewhere.com
  66.  
  67. DocumentRoot /usr/share/davical/htdocs/
  68.  
  69. DirectoryIndex index.php index.html
  70.  
  71. Alias /images/ /usr/share/davical/htdocs/images/
  72.  
  73. <Directory /usr/share/davical/htdocs/>
  74. AllowOverride None
  75. Order allow,deny
  76. Allow from all
  77. </Directory>
  78. AcceptPathInfo On
  79.  
  80. # dont use following lines unless using older PHP versions
  81. # php_value include_path /usr/share/awl/inc
  82. # php_value magic_quotes_gpc 0
  83. # php_value register_globals 0
  84. # php_value error_reporting "E_ALL & ~E_NOTICE"
  85. # php_value default_charset "utf-8"
  86. </VirtualHost>
  87. root@WebDev:/usr/share/davical#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement