{"id":16346,"date":"2024-10-31T19:25:26","date_gmt":"2024-10-31T19:25:26","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=16346"},"modified":"2024-11-02T04:47:51","modified_gmt":"2024-11-02T04:47:51","password":"","slug":"how-to-install-and-configure-openvpn-on-a-linux-server","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-and-configure-openvpn-on-a-linux-server\/","title":{"rendered":"How to Install and Configure OpenVPN on a Linux Server"},"content":{"rendered":"\n<p>Here&#8217;s a comprehensive guide for installing and configuring OpenVPN on a Linux server to secure remote access. OpenVPN is widely used for setting up secure VPN connections, and it\u2019s flexible enough for various configurations and network requirements.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Update Your System<\/h3>\n\n\n\n<p>Before installing OpenVPN, start by updating your package repositories.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt upgrade -y # For Ubuntu\/Debian-based systems<br>sudo dnf update -y # For CentOS\/RHEL-based systems<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Install OpenVPN and Easy-RSA<\/h3>\n\n\n\n<p>OpenVPN and Easy-RSA are necessary to create the VPN and manage encryption keys.<\/p>\n\n\n\n<p>For <strong>Ubuntu\/Debian-based systems<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install -y openvpn easy-rsa<\/code><\/pre>\n\n\n\n<p>For <strong>CentOS\/RHEL-based systems<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dnf install -y epel-release\nsudo dnf install -y openvpn easy-rsa<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Set Up the CA Directory<\/h3>\n\n\n\n<p>To establish the VPN, you need to create a Certificate Authority (CA) to issue SSL\/TLS certificates for encryption.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Create the Easy-RSA directory:<\/strong><\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>make-cadir ~\/openvpn-ca<br>cd ~\/openvpn-ca<\/code><\/pre>\n\n\n\n<p>   2. <strong>Edit the vars file<\/strong>: The <code>vars<\/code> file defines settings for generating certificates. Open it in a text editor:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>vi vars<\/code><\/pre>\n\n\n\n<p>Update the following values according to your organization or location:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>set_var EASYRSA_REQ_COUNTRY    \"US\"\nset_var EASYRSA_REQ_PROVINCE   \"California\"\nset_var EASYRSA_REQ_CITY       \"San Francisco\"\nset_var EASYRSA_REQ_ORG        \"YourOrganization\"\nset_var EASYRSA_REQ_EMAIL      \"email@example.com\"\nset_var EASYRSA_REQ_OU         \"IT\"<\/code><\/pre>\n\n\n\n<p>3. <strong>Load the new <code>vars<\/code> settings<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>source vars<\/code><\/pre>\n\n\n\n<p>4. <strong>Clean any previous keys<\/strong> (if this is a reconfiguration):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.\/clean-all<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Build the CA and Server Certificates<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Build the CA<\/strong>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>.\/easyrsa init-pki\n.\/easyrsa build-ca<\/code><\/pre>\n\n\n\n<p>Follow the prompts to create the CA certificate.<\/p>\n\n\n\n<p>2. <strong>Create the server certificate and key<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.\/easyrsa build-server-full server nopass<\/code><\/pre>\n\n\n\n<p>3. <strong>Generate the Diffie-Hellman key<\/strong> (for secure key exchange):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.\/easyrsa gen-dh<\/code><\/pre>\n\n\n\n<p>4. Generate an HMAC signature (for extra security):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>openvpn --genkey --secret ta.key<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Configure the OpenVPN Server<\/h3>\n\n\n\n<p>Now, configure OpenVPN to use the generated certificates and keys.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Copy the certificates and keys to the OpenVPN directory<\/strong>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo cp pki\/ca.crt pki\/private\/server.key pki\/issued\/server.crt pki\/dh.pem ta.key \/etc\/openvpn<\/code><\/pre>\n\n\n\n<p>  2.  Edit the OpenVPN server configuration: Start by creating a new configuration file from the sample provided.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo cp \/usr\/share\/doc\/openvpn\/examples\/sample-config-files\/server.conf \/etc\/openvpn\/server.conf\n\nsudo nano \/etc\/openvpn\/server.conf<\/code><\/pre>\n\n\n\n<p>3. <strong>Update the server configuration file<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set the <code>ca<\/code>, <code>cert<\/code>, <code>key<\/code>, and <code>dh<\/code> options to point to the correct certificate and key files:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>ca \/etc\/openvpn\/ca.crt<br>cert \/etc\/openvpn\/server.crt<br>key \/etc\/openvpn\/server.key<br>dh \/etc\/openvpn\/dh.pem<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the <code>tls-auth<\/code> directive to enable the HMAC signature:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>tls-auth \/etc\/openvpn\/ta.key 0<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Enable server mode:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>server 10.8.0.0 255.255.255.0<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Uncomment <code>push \"redirect-gateway def1 bypass-dhcp\"<\/code> to route client traffic through the VPN.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Uncomment or set the DNS server to push for clients, e.g., Google&#8217;s DNS:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>push \"dhcp-option DNS 8.8.8.8\"<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Adjust Firewall and Enable IP Forwarding<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Enable IP forwarding<\/strong> to allow VPN traffic to route properly:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo sysctl -w net.ipv4.ip_forward=1<\/code><\/pre>\n\n\n\n<p>To make this change permanent, edit <code>\/etc\/sysctl.conf<\/code> and uncomment or add:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>net.ipv4.ip_forward=1<\/code><\/pre>\n\n\n\n<p>2. <strong>Configure firewall rules<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Allow forwarding in <code>iptables<\/code>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo iptables -t nat -A POSTROUTING -s 10.8.0.0\/24 -o eth0 -j MASQUERADE<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open the UDP port (default 1194) for OpenVPN:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw allow 1194\/udp<\/code><\/pre>\n\n\n\n<p>3. <strong>Save the firewall rules<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo iptables-save &gt; \/etc\/iptables\/rules.v4<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7: Start and Enable the OpenVPN Service<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Start OpenVPN<\/strong>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl start openvpn@server<\/code><\/pre>\n\n\n\n<p> 2. Enable OpenVPN to start on boot<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl enable openvpn@server<\/code><\/pre>\n\n\n\n<p>3. <strong>Check the status<\/strong> to ensure the VPN is running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl status openvpn@server<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 8: Generate Client Configurations<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Generate a client certificate<\/strong>:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>.\/easyrsa build-client-full client1 nopass<\/code><\/pre>\n\n\n\n<p>  2. <strong>Create a client configuration file<\/strong>: Use the sample configuration as a base.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo cp \/usr\/share\/doc\/openvpn\/examples\/sample-config-files\/client.conf ~\/client1.ovpn<\/code><\/pre>\n\n\n\n<p>3. <strong>Edit the client configuration file<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set the correct server IP address:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>remote your_server_ip 1194<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Specify the client certificates:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>ca ca.crt<br>cert client1.crt<br>key client1.key<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the <code>tls-auth<\/code> key and <code>cipher<\/code> settings to match the server:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>tls-auth ta.key 1<br>cipher AES-256-CBC<\/code><\/pre>\n\n\n\n<p>4. <strong>Copy certificates and keys to the client configuration directory<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cp pki\/ca.crt pki\/issued\/client1.crt pki\/private\/client1.key ta.key ~\/client1.ovpn<\/code><\/pre>\n\n\n\n<p>5. <strong>Transfer the <code>.ovpn<\/code> file<\/strong> (client configuration file) to the client device securely (e.g., via SCP).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 9: Connect the Client to the VPN<\/h3>\n\n\n\n<p>To connect, import the <code>.ovpn<\/code> file into the OpenVPN client software on the device. Start the VPN, and it should route traffic securely through the server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Author&#8217;s Final Word<\/h2>\n\n\n\n<p>This configuration sets up a secure OpenVPN server on Linux with traffic routing and client configuration included. The VPN is now ready for secure connections from your client devices!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here&#8217;s a comprehensive guide for installing and configuring OpenVPN on a Linux server to secure remote access. OpenVPN is widely used for setting up secure VPN connections, and it\u2019s flexible enough for various configurations and network requirements. Step 1: Update Your System Before installing OpenVPN, start by updating your package repositories. Step 2: Install OpenVPN [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_eb_attr":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"doc_category":[1820,1824,1879,2128],"doc_tag":[],"class_list":["post-16346","docs","type-docs","status-publish","hentry","doc_category-cloud-servers-in-kenya","doc_category-dedicated-servers","doc_category-servers","doc_category-vps-servers"],"year_month":"2026-06","word_count":757,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Eugene","author_nicename":"eugene","author_url":"https:\/\/truehost.com\/support\/author\/eugene\/"},"doc_category_info":[{"term_name":"Cloud servers in Kenya","term_url":"https:\/\/truehost.com\/support\/docs-category\/cloud-servers-in-kenya\/"},{"term_name":"dedicated servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/dedicated-servers\/"},{"term_name":"Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/servers\/"},{"term_name":"VPS-Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/vps-servers\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install and Configure OpenVPN on a Linux Server -<\/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:\/\/truehost.com\/support\/knowledge-base\/how-to-install-and-configure-openvpn-on-a-linux-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install and Configure OpenVPN on a Linux Server -\" \/>\n<meta property=\"og:description\" content=\"Here&#8217;s a comprehensive guide for installing and configuring OpenVPN on a Linux server to secure remote access. OpenVPN is widely used for setting up secure VPN connections, and it\u2019s flexible enough for various configurations and network requirements. Step 1: Update Your System Before installing OpenVPN, start by updating your package repositories. Step 2: Install OpenVPN [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-and-configure-openvpn-on-a-linux-server\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-02T04:47:51+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-and-configure-openvpn-on-a-linux-server\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-and-configure-openvpn-on-a-linux-server\\\/\",\"name\":\"How to Install and Configure OpenVPN on a Linux Server -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"datePublished\":\"2024-10-31T19:25:26+00:00\",\"dateModified\":\"2024-11-02T04:47:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-and-configure-openvpn-on-a-linux-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-and-configure-openvpn-on-a-linux-server\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-install-and-configure-openvpn-on-a-linux-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install and Configure OpenVPN on a Linux Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"width\":240,\"height\":48,\"caption\":\"Truehost Kenya\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install and Configure OpenVPN on a Linux Server -","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:\/\/truehost.com\/support\/knowledge-base\/how-to-install-and-configure-openvpn-on-a-linux-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Install and Configure OpenVPN on a Linux Server -","og_description":"Here&#8217;s a comprehensive guide for installing and configuring OpenVPN on a Linux server to secure remote access. OpenVPN is widely used for setting up secure VPN connections, and it\u2019s flexible enough for various configurations and network requirements. Step 1: Update Your System Before installing OpenVPN, start by updating your package repositories. Step 2: Install OpenVPN [&hellip;]","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-and-configure-openvpn-on-a-linux-server\/","article_modified_time":"2024-11-02T04:47:51+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-and-configure-openvpn-on-a-linux-server\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-and-configure-openvpn-on-a-linux-server\/","name":"How to Install and Configure OpenVPN on a Linux Server -","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"datePublished":"2024-10-31T19:25:26+00:00","dateModified":"2024-11-02T04:47:51+00:00","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-and-configure-openvpn-on-a-linux-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-and-configure-openvpn-on-a-linux-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-install-and-configure-openvpn-on-a-linux-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Install and Configure OpenVPN on a Linux Server"}]},{"@type":"WebSite","@id":"https:\/\/truehost.com\/support\/#website","url":"https:\/\/truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","width":240,"height":48,"caption":"Truehost Kenya"},"image":{"@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16346","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/comments?post=16346"}],"version-history":[{"count":2,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16346\/revisions"}],"predecessor-version":[{"id":16542,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16346\/revisions\/16542"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=16346"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=16346"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=16346"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}