{"id":25,"date":"2026-02-26T21:07:27","date_gmt":"2026-02-26T12:07:27","guid":{"rendered":"https:\/\/allocbolloc.com\/?p=25"},"modified":"2026-02-26T21:07:54","modified_gmt":"2026-02-26T12:07:54","slug":"ubuntu-%ec%97%90%ec%84%9c-lets-encrypt-%ec%9d%b8%ec%a6%9d%ec%84%9c-%eb%8b%a4%ec%8b%9c%ec%97%b0%ea%b2%b0%ea%b0%b1%ec%8b%a0-%ec%9e%ac%ec%84%a4%ec%a0%95","status":"publish","type":"post","link":"https:\/\/allocbolloc.com\/?p=25","title":{"rendered":"Ubuntu \uc5d0\uc11c Let&#8217;s Encrypt \uc778\uc99d\uc11c \ub2e4\uc2dc\uc5f0\uacb0(\uac31\uc2e0, \uc7ac\uc124\uc815)"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">1) \uc778\uc99d\uc11c\uac00 \ub9cc\ub8cc\ub418\uc5c8\uac70\ub098 \ub2e4\uc2dc \uc5f0\uacb0\ud574\uc57c \ud558\ub294 \uacbd\uc6b0<\/h2>\n\n\n\n<p>\uac00\uc7a5 \uc77c\ubc18\uc801\uc778 \ubc29\ubc95\uc740 <strong>certbot renew<\/strong> \ub610\ub294 <strong>\uc7ac\ubc1c\uae09(certonly)<\/strong> \uc785\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u25cf \uc778\uc99d\uc11c \uac31\uc2e0(renew)<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo certbot renew\n<\/code><\/pre>\n\n\n\n<p>\uc790\ub3d9 \uac31\uc2e0\uc774 \uc798 \ub418\ub294\uc9c0 \ud14c\uc2a4\ud2b8:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo certbot renew --dry-run\n<\/code><\/pre>\n\n\n\n<p>(\uac31\uc2e0 \ub85c\uc9c1\uc740 Ubuntu\uc5d0\uc11c \uc790\ub3d9 \uc2a4\ucf00\uc904\ub7ec\ub85c \ud558\ub8e8 2\ubc88 \uc2e4\ud589\ub428)<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">2) \uc778\uc99d\uc11c\ub97c \uc0c8\ub85c \ubc1c\uae09\ud574\uc11c \ub2e4\uc2dc \uc5f0\uacb0\ud574\uc57c \ud558\ub294 \uacbd\uc6b0<\/h2>\n\n\n\n<p>\ub3c4\uba54\uc778 \uc5f0\uacb0\uc774 \ubc14\ub00c\uc5c8\uac70\ub098, \uc124\uc815\uc744 \ub2e4\uc2dc \ud574\uc57c \ud55c\ub2e4\uba74 <strong>certonly<\/strong>\ub85c \uc7ac\ubc1c\uae09\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u25cf Nginx<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo certbot --nginx -d yourdomain.com -d www.yourdomain.com\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u25cf Apache<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo certbot --apache -d yourdomain.com -d www.yourdomain.com\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u25cf Webroot \ubc29\uc2dd<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo certbot certonly --webroot -w \/var\/www\/html -d yourdomain.com\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">3) \uc778\uc99d\uc11c \ud30c\uc77c\uc744 \uc6f9\uc11c\ubc84\uc5d0 \ub2e4\uc2dc \uc5f0\uacb0\ud574\uc57c \ud558\ub294 \uacbd\uc6b0<\/h2>\n\n\n\n<p>Let\u2019s Encrypt \uc778\uc99d\uc11c\ub294 \uc544\ub798 \uacbd\ub85c\uc5d0 \uc800\uc7a5\ub429\ub2c8\ub2e4:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/etc\/letsencrypt\/live\/\ub3c4\uba54\uc778\uba85\/\n  \u251c\u2500 cert.pem\n  \u251c\u2500 privkey.pem\n  \u251c\u2500 chain.pem\n  \u2514\u2500 fullchain.pem\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u25cf Nginx \uc124\uc815 \uc608\uc2dc<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>ssl_certificate     \/etc\/letsencrypt\/live\/yourdomain.com\/fullchain.pem;\nssl_certificate_key \/etc\/letsencrypt\/live\/yourdomain.com\/privkey.pem;\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u25cf Apache \uc124\uc815 \uc608\uc2dc<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>SSLCertificateFile \/etc\/letsencrypt\/live\/yourdomain.com\/cert.pem\nSSLCertificateKeyFile \/etc\/letsencrypt\/live\/yourdomain.com\/privkey.pem\n<\/code><\/pre>\n\n\n\n<p>\uc124\uc815 \ud6c4 \uc6f9\uc11c\ubc84 \uc7ac\uc2dc\uc791:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart nginx\n# \ub610\ub294\nsudo systemctl restart apache2\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">4) \uc778\uc99d\uc11c \uac31\uc2e0 \ud6c4 \uc790\ub3d9 reload \uc124\uc815(Nginx)<\/h2>\n\n\n\n<p>Certbot\uc740 \uc778\uc99d\uc11c\ub97c \uac31\uc2e0\ud574\ub3c4 Nginx\uac00 \uc790\ub3d9 reload \ub418\uc9c0 \uc54a\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<br>\uc774 \uacbd\uc6b0 deploy hook\uc744 \ucd94\uac00\ud569\ub2c8\ub2e4.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano \/etc\/letsencrypt\/renewal-hooks\/deploy\/reload-nginx.sh\n<\/code><\/pre>\n\n\n\n<p>\ub0b4\uc6a9:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#!\/bin\/bash\nsystemctl reload nginx\n<\/code><\/pre>\n\n\n\n<p>\uad8c\ud55c \ubd80\uc5ec:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chmod +x \/etc\/letsencrypt\/renewal-hooks\/deploy\/reload-nginx.sh\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1) \uc778\uc99d\uc11c\uac00 \ub9cc\ub8cc\ub418\uc5c8\uac70\ub098 \ub2e4\uc2dc \uc5f0\uacb0\ud574\uc57c \ud558\ub294 \uacbd\uc6b0 \uac00\uc7a5 \uc77c\ubc18\uc801\uc778 \ubc29\ubc95\uc740 certbot renew \ub610\ub294 \uc7ac\ubc1c\uae09(certonly) \uc785\ub2c8\ub2e4. \u25cf \uc778\uc99d\uc11c \uac31\uc2e0(renew) \uc790\ub3d9 \uac31\uc2e0\uc774 \uc798 \ub418\ub294\uc9c0 \ud14c\uc2a4\ud2b8: (\uac31\uc2e0 \ub85c\uc9c1\uc740 Ubuntu\uc5d0\uc11c \uc790\ub3d9 \uc2a4\ucf00\uc904\ub7ec\ub85c \ud558\ub8e8 2\ubc88 \uc2e4\ud589\ub428) 2) \uc778\uc99d\uc11c\ub97c \uc0c8\ub85c \ubc1c\uae09\ud574\uc11c \ub2e4\uc2dc \uc5f0\uacb0\ud574\uc57c \ud558\ub294 \uacbd\uc6b0 \ub3c4\uba54\uc778 \uc5f0\uacb0\uc774 \ubc14\ub00c\uc5c8\uac70\ub098, \uc124\uc815\uc744 \ub2e4\uc2dc \ud574\uc57c \ud55c\ub2e4\uba74 certonly\ub85c \uc7ac\ubc1c\uae09\ud569\ub2c8\ub2e4. \u25cf Nginx \u25cf Apache \u25cf Webroot \ubc29\uc2dd [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[3],"tags":[],"class_list":["post-25","post","type-post","status-publish","format-standard","hentry","category-server"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Ubuntu \uc5d0\uc11c Let&#039;s Encrypt \uc778\uc99d\uc11c \ub2e4\uc2dc\uc5f0\uacb0(\uac31\uc2e0, \uc7ac\uc124\uc815) - \uc62c\ub85d\ubcfc\ub85d<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/allocbolloc.com\/?p=25\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ubuntu \uc5d0\uc11c Let&#039;s Encrypt \uc778\uc99d\uc11c \ub2e4\uc2dc\uc5f0\uacb0(\uac31\uc2e0, \uc7ac\uc124\uc815) - \uc62c\ub85d\ubcfc\ub85d\" \/>\n<meta property=\"og:description\" content=\"1) \uc778\uc99d\uc11c\uac00 \ub9cc\ub8cc\ub418\uc5c8\uac70\ub098 \ub2e4\uc2dc \uc5f0\uacb0\ud574\uc57c \ud558\ub294 \uacbd\uc6b0 \uac00\uc7a5 \uc77c\ubc18\uc801\uc778 \ubc29\ubc95\uc740 certbot renew \ub610\ub294 \uc7ac\ubc1c\uae09(certonly) \uc785\ub2c8\ub2e4. \u25cf \uc778\uc99d\uc11c \uac31\uc2e0(renew) \uc790\ub3d9 \uac31\uc2e0\uc774 \uc798 \ub418\ub294\uc9c0 \ud14c\uc2a4\ud2b8: (\uac31\uc2e0 \ub85c\uc9c1\uc740 Ubuntu\uc5d0\uc11c \uc790\ub3d9 \uc2a4\ucf00\uc904\ub7ec\ub85c \ud558\ub8e8 2\ubc88 \uc2e4\ud589\ub428) 2) \uc778\uc99d\uc11c\ub97c \uc0c8\ub85c \ubc1c\uae09\ud574\uc11c \ub2e4\uc2dc \uc5f0\uacb0\ud574\uc57c \ud558\ub294 \uacbd\uc6b0 \ub3c4\uba54\uc778 \uc5f0\uacb0\uc774 \ubc14\ub00c\uc5c8\uac70\ub098, \uc124\uc815\uc744 \ub2e4\uc2dc \ud574\uc57c \ud55c\ub2e4\uba74 certonly\ub85c \uc7ac\ubc1c\uae09\ud569\ub2c8\ub2e4. \u25cf Nginx \u25cf Apache \u25cf Webroot \ubc29\uc2dd [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/allocbolloc.com\/?p=25\" \/>\n<meta property=\"og:site_name\" content=\"\uc62c\ub85d\ubcfc\ub85d\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-26T12:07:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-26T12:07:54+00:00\" \/>\n<meta name=\"author\" content=\"whook\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"whook\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/allocbolloc.com\/?p=25#article\",\"isPartOf\":{\"@id\":\"https:\/\/allocbolloc.com\/?p=25\"},\"author\":{\"name\":\"whook\",\"@id\":\"https:\/\/allocbolloc.com\/#\/schema\/person\/16b4e031ebcfa89bc11ca0ddd1c3b644\"},\"headline\":\"Ubuntu \uc5d0\uc11c Let&#8217;s Encrypt \uc778\uc99d\uc11c \ub2e4\uc2dc\uc5f0\uacb0(\uac31\uc2e0, \uc7ac\uc124\uc815)\",\"datePublished\":\"2026-02-26T12:07:27+00:00\",\"dateModified\":\"2026-02-26T12:07:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/allocbolloc.com\/?p=25\"},\"wordCount\":25,\"commentCount\":0,\"articleSection\":[\"\uc11c\ubc84\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/allocbolloc.com\/?p=25#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/allocbolloc.com\/?p=25\",\"url\":\"https:\/\/allocbolloc.com\/?p=25\",\"name\":\"Ubuntu \uc5d0\uc11c Let's Encrypt \uc778\uc99d\uc11c \ub2e4\uc2dc\uc5f0\uacb0(\uac31\uc2e0, \uc7ac\uc124\uc815) - \uc62c\ub85d\ubcfc\ub85d\",\"isPartOf\":{\"@id\":\"https:\/\/allocbolloc.com\/#website\"},\"datePublished\":\"2026-02-26T12:07:27+00:00\",\"dateModified\":\"2026-02-26T12:07:54+00:00\",\"author\":{\"@id\":\"https:\/\/allocbolloc.com\/#\/schema\/person\/16b4e031ebcfa89bc11ca0ddd1c3b644\"},\"breadcrumb\":{\"@id\":\"https:\/\/allocbolloc.com\/?p=25#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/allocbolloc.com\/?p=25\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/allocbolloc.com\/?p=25#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/allocbolloc.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ubuntu \uc5d0\uc11c Let&#8217;s Encrypt \uc778\uc99d\uc11c \ub2e4\uc2dc\uc5f0\uacb0(\uac31\uc2e0, \uc7ac\uc124\uc815)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/allocbolloc.com\/#website\",\"url\":\"https:\/\/allocbolloc.com\/\",\"name\":\"\uc62c\ub85d\ubcfc\ub85d\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/allocbolloc.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/allocbolloc.com\/#\/schema\/person\/16b4e031ebcfa89bc11ca0ddd1c3b644\",\"name\":\"whook\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/allocbolloc.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/bec9624ca539ebf0540efbef04346feab19b9ffea4e10ba8495f1b8ad3a4cf4b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/bec9624ca539ebf0540efbef04346feab19b9ffea4e10ba8495f1b8ad3a4cf4b?s=96&d=mm&r=g\",\"caption\":\"whook\"},\"sameAs\":[\"https:\/\/allocbolloc.com\"],\"url\":\"https:\/\/allocbolloc.com\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Ubuntu \uc5d0\uc11c Let's Encrypt \uc778\uc99d\uc11c \ub2e4\uc2dc\uc5f0\uacb0(\uac31\uc2e0, \uc7ac\uc124\uc815) - \uc62c\ub85d\ubcfc\ub85d","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/allocbolloc.com\/?p=25","og_locale":"ko_KR","og_type":"article","og_title":"Ubuntu \uc5d0\uc11c Let's Encrypt \uc778\uc99d\uc11c \ub2e4\uc2dc\uc5f0\uacb0(\uac31\uc2e0, \uc7ac\uc124\uc815) - \uc62c\ub85d\ubcfc\ub85d","og_description":"1) \uc778\uc99d\uc11c\uac00 \ub9cc\ub8cc\ub418\uc5c8\uac70\ub098 \ub2e4\uc2dc \uc5f0\uacb0\ud574\uc57c \ud558\ub294 \uacbd\uc6b0 \uac00\uc7a5 \uc77c\ubc18\uc801\uc778 \ubc29\ubc95\uc740 certbot renew \ub610\ub294 \uc7ac\ubc1c\uae09(certonly) \uc785\ub2c8\ub2e4. \u25cf \uc778\uc99d\uc11c \uac31\uc2e0(renew) \uc790\ub3d9 \uac31\uc2e0\uc774 \uc798 \ub418\ub294\uc9c0 \ud14c\uc2a4\ud2b8: (\uac31\uc2e0 \ub85c\uc9c1\uc740 Ubuntu\uc5d0\uc11c \uc790\ub3d9 \uc2a4\ucf00\uc904\ub7ec\ub85c \ud558\ub8e8 2\ubc88 \uc2e4\ud589\ub428) 2) \uc778\uc99d\uc11c\ub97c \uc0c8\ub85c \ubc1c\uae09\ud574\uc11c \ub2e4\uc2dc \uc5f0\uacb0\ud574\uc57c \ud558\ub294 \uacbd\uc6b0 \ub3c4\uba54\uc778 \uc5f0\uacb0\uc774 \ubc14\ub00c\uc5c8\uac70\ub098, \uc124\uc815\uc744 \ub2e4\uc2dc \ud574\uc57c \ud55c\ub2e4\uba74 certonly\ub85c \uc7ac\ubc1c\uae09\ud569\ub2c8\ub2e4. \u25cf Nginx \u25cf Apache \u25cf Webroot \ubc29\uc2dd [&hellip;]","og_url":"https:\/\/allocbolloc.com\/?p=25","og_site_name":"\uc62c\ub85d\ubcfc\ub85d","article_published_time":"2026-02-26T12:07:27+00:00","article_modified_time":"2026-02-26T12:07:54+00:00","author":"whook","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"whook","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/allocbolloc.com\/?p=25#article","isPartOf":{"@id":"https:\/\/allocbolloc.com\/?p=25"},"author":{"name":"whook","@id":"https:\/\/allocbolloc.com\/#\/schema\/person\/16b4e031ebcfa89bc11ca0ddd1c3b644"},"headline":"Ubuntu \uc5d0\uc11c Let&#8217;s Encrypt \uc778\uc99d\uc11c \ub2e4\uc2dc\uc5f0\uacb0(\uac31\uc2e0, \uc7ac\uc124\uc815)","datePublished":"2026-02-26T12:07:27+00:00","dateModified":"2026-02-26T12:07:54+00:00","mainEntityOfPage":{"@id":"https:\/\/allocbolloc.com\/?p=25"},"wordCount":25,"commentCount":0,"articleSection":["\uc11c\ubc84"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/allocbolloc.com\/?p=25#respond"]}]},{"@type":"WebPage","@id":"https:\/\/allocbolloc.com\/?p=25","url":"https:\/\/allocbolloc.com\/?p=25","name":"Ubuntu \uc5d0\uc11c Let's Encrypt \uc778\uc99d\uc11c \ub2e4\uc2dc\uc5f0\uacb0(\uac31\uc2e0, \uc7ac\uc124\uc815) - \uc62c\ub85d\ubcfc\ub85d","isPartOf":{"@id":"https:\/\/allocbolloc.com\/#website"},"datePublished":"2026-02-26T12:07:27+00:00","dateModified":"2026-02-26T12:07:54+00:00","author":{"@id":"https:\/\/allocbolloc.com\/#\/schema\/person\/16b4e031ebcfa89bc11ca0ddd1c3b644"},"breadcrumb":{"@id":"https:\/\/allocbolloc.com\/?p=25#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/allocbolloc.com\/?p=25"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/allocbolloc.com\/?p=25#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/allocbolloc.com\/"},{"@type":"ListItem","position":2,"name":"Ubuntu \uc5d0\uc11c Let&#8217;s Encrypt \uc778\uc99d\uc11c \ub2e4\uc2dc\uc5f0\uacb0(\uac31\uc2e0, \uc7ac\uc124\uc815)"}]},{"@type":"WebSite","@id":"https:\/\/allocbolloc.com\/#website","url":"https:\/\/allocbolloc.com\/","name":"\uc62c\ub85d\ubcfc\ub85d","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/allocbolloc.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/allocbolloc.com\/#\/schema\/person\/16b4e031ebcfa89bc11ca0ddd1c3b644","name":"whook","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/allocbolloc.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/bec9624ca539ebf0540efbef04346feab19b9ffea4e10ba8495f1b8ad3a4cf4b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bec9624ca539ebf0540efbef04346feab19b9ffea4e10ba8495f1b8ad3a4cf4b?s=96&d=mm&r=g","caption":"whook"},"sameAs":["https:\/\/allocbolloc.com"],"url":"https:\/\/allocbolloc.com\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/allocbolloc.com\/index.php?rest_route=\/wp\/v2\/posts\/25","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/allocbolloc.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/allocbolloc.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/allocbolloc.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/allocbolloc.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=25"}],"version-history":[{"count":1,"href":"https:\/\/allocbolloc.com\/index.php?rest_route=\/wp\/v2\/posts\/25\/revisions"}],"predecessor-version":[{"id":26,"href":"https:\/\/allocbolloc.com\/index.php?rest_route=\/wp\/v2\/posts\/25\/revisions\/26"}],"wp:attachment":[{"href":"https:\/\/allocbolloc.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=25"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/allocbolloc.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=25"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/allocbolloc.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=25"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}