{"id":16413,"date":"2026-07-17T00:00:14","date_gmt":"2026-07-17T00:00:14","guid":{"rendered":"https:\/\/hostnoc-revamp.branex.org\/blog\/?p=16413"},"modified":"2026-07-17T04:31:31","modified_gmt":"2026-07-17T04:31:31","slug":"how-to-install-n8n-on-vps","status":"publish","type":"post","link":"https:\/\/hostnoc-revamp.branex.org\/blog\/how-to-install-n8n-on-vps\/","title":{"rendered":"How to Install n8n on a VPS?"},"content":{"rendered":"<p>If you&#8217;ve searched for \u201chow to install n8n on a VPS,\u201d you&#8217;ve probably already found half a dozen tutorials \u2014 and maybe gotten stuck on at least one of them. Some skip the domain and SSL setup entirely, and then your webhooks mysteriously don&#8217;t work. Others hand you a Docker command with zero explanation and leave you Googling what half the flags mean.<\/p>\n<p>This guide is written for the opposite experience. You don&#8217;t need to know Linux. You don&#8217;t need to have used Docker before. You just need a VPS, a domain name, about 45 minutes, and the ability to copy and paste carefully.<\/p>\n<p>By the end, you&#8217;ll have:<\/p>\n<ul>\n<li>n8n running on your own Ubuntu VPS<\/li>\n<li>A real domain (like n8n.yourdomain.com) pointing to it<\/li>\n<li>Free, auto-renewing HTTPS so webhooks and integrations actually work<\/li>\n<li>Your workflow data persisting safely, even after restarts or updates<\/li>\n<\/ul>\n<span class=\"highlight\" ><strong>Why this matters:\u00a0 <\/strong>n8n itself explicitly recommends Docker as the installation method for self-hosting, because it isolates n8n from your operating system and makes upgrades and backups far simpler than a raw install. This guide follows that recommendation and uses n8n&#8217;s own official Docker Compose setup \u2014 not a third-party reinvention of it \u2014 so you can trust that what you&#8217;re copying is accurate and current.<\/span>\n\n<h2>Before You Begin &#8211; What You&#8217;ll Need?<\/h2>\n<p>Gather these four things first so you&#8217;re not hunting for them mid-setup:<\/p>\n<ol>\n<li>A VPS running Ubuntu. This guide uses HostNoc, which offers Ubuntu as one of its standard Linux distributions alongside Debian and CentOS \u2014 so it&#8217;s readily available when you provision your server. Choose Ubuntu 24.04 LTS if it&#8217;s offered; if not, 22.04 LTS works identically for everything in this guide.<\/li>\n<li>A domain name (e.g., yourdomain.com), purchased from any registrar (Namecheap, GoDaddy, Google Domains, etc.). You don&#8217;t need a new one \u2014 a subdomain like n8n.yourdomain.com works fine off a domain you already own.<\/li>\n<li>A terminal on your own computer. macOS and Linux have one built in (Terminal). Windows 10\/11 has SSH built into PowerShell and Windows Terminal \u2014 no extra software needed.<\/li>\n<li>About 45 minutes and a willingness to copy commands exactly as written. Precision matters more than speed here.<\/li>\n<\/ol>\n<p>We have also covered a complete guide on how you can <a href=\"https:\/\/hostnoc-revamp.branex.org\/blog\/how-to-deploy-n8n-on-linux\/\" target=\"_blank\" rel=\"noopener\">setup N8N on Linux<\/a> based server.<\/p>\n<h2>Why the domain and SSL aren&#8217;t optional<\/h2>\n<p>It&#8217;s tempting to skip straight to \u201cjust get n8n running\u201d and worry about the domain later. Here&#8217;s why that backfires: n8n&#8217;s webhook-triggered nodes (the ones that let n8n react to events from Slack, Stripe, GitHub, and hundreds of other services) need to be reachable over the public internet at a stable, HTTPS address. Most third-party services refuse to send data to a plain HTTP endpoint. Setting up the domain and SSL now \u2014 while it&#8217;s still simple \u2014 saves you from re-doing your entire setup later.<\/p>\n<h2>What You&#8217;re Actually Building?<\/h2>\n<p>Before typing anything, it helps to see the finished shape of the thing, so each step below makes sense in context.<\/p>\n<p>Here&#8217;s what happens when someone (including you) visits n8n.yourdomain.com:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-16417 aligncenter\" src=\"https:\/\/hostnoc-revamp.branex.org\/blog\/wp-content\/uploads\/2026\/07\/n8n-hostnoc.webp\" alt=\"\" width=\"1800\" height=\"840\" title=\"\" srcset=\"https:\/\/hostnoc-revamp.branex.org\/blog\/wp-content\/uploads\/2026\/07\/n8n-hostnoc.webp 1800w, https:\/\/hostnoc-revamp.branex.org\/blog\/wp-content\/uploads\/2026\/07\/n8n-hostnoc-768x358.webp 768w, https:\/\/hostnoc-revamp.branex.org\/blog\/wp-content\/uploads\/2026\/07\/n8n-hostnoc-1536x717.webp 1536w, https:\/\/hostnoc-revamp.branex.org\/blog\/wp-content\/uploads\/2026\/07\/n8n-hostnoc-260x121.webp 260w, https:\/\/hostnoc-revamp.branex.org\/blog\/wp-content\/uploads\/2026\/07\/n8n-hostnoc-50x23.webp 50w, https:\/\/hostnoc-revamp.branex.org\/blog\/wp-content\/uploads\/2026\/07\/n8n-hostnoc-150x70.webp 150w\" sizes=\"auto, (max-width: 1800px) 100vw, 1800px\" \/><\/p>\n<p>In plain terms:<\/p>\n<ol start=\"5\">\n<li>Your domain&#8217;s DNS points visitors to your VPS&#8217;s IP address.<\/li>\n<li>Traffic hits Traefik, a small reverse proxy running in its own Docker container. Traefik automatically requests and renews a free SSL certificate from Let&#8217;s Encrypt, so your n8n instance is always served over HTTPS.<\/li>\n<li>Traefik forwards the request internally to the n8n container, which isn&#8217;t exposed directly to the internet \u2014 only Traefik can reach it.<\/li>\n<li>n8n&#8217;s workflows, credentials, and its encryption key live in a persistent Docker volume, so they survive restarts, server reboots, and future updates.<\/li>\n<\/ol>\n<p>This is the exact architecture <a href=\"https:\/\/docs.n8n.io\/\" target=\"_blank\" rel=\"noopener nofollow\">n8n&#8217;s own documentation<\/a> sets up in its official Docker Compose guide \u2014 you&#8217;re not getting a simplified or improvised version.<\/p>\n<h2>Step 1: Spin Up Your Ubuntu VPS on HostNoc<\/h2>\n<ol start=\"9\">\n<li>Log in to your HostNoc account (or sign up if you&#8217;re new) and order a VPS plan. A KVM-based VPS with at least 2 GB of RAM is a comfortable starting point for n8n plus Traefik \u2014 n8n itself is lightweight, but you want headroom for Docker and any workflows you build later.<\/li>\n<li>During setup, choose Ubuntu 24.04 LTS (or 22.04 LTS) as your operating system.<\/li>\n<li>Complete the order. HostNoc will email you your server&#8217;s public IP address and root password once it&#8217;s provisioned \u2014 this usually takes a few minutes.<\/li>\n<\/ol>\n<p>Keep that email open; you&#8217;ll need the IP and password in the next two steps.<\/p>\n<h2>Step 2: Point Your Domain at the VPS<\/h2>\n<p>While your VPS finishes provisioning, set up the DNS side.<\/p>\n<ol start=\"12\">\n<li>Log in to wherever you manage your domain&#8217;s DNS (your registrar, or Cloudflare if you use it).<\/li>\n<li>Create an A record like this:<\/li>\n<\/ol>\n<table width=\"900\">\n<tbody>\n<tr>\n<td width=\"200\"><strong>Type<\/strong><\/td>\n<td width=\"300\"><strong>Name (host)<\/strong><\/td>\n<td width=\"400\"><strong>Value<\/strong><\/td>\n<\/tr>\n<tr>\n<td width=\"200\">A<\/td>\n<td width=\"300\">n8n<\/td>\n<td width=\"400\">your_vps_ip_address<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>This makes n8n.yourdomain.com resolve to your server.<\/p>\n<ol start=\"14\">\n<li>DNS changes take time to propagate \u2014 anywhere from a few minutes to a few hours, depending on your provider. You can move on to the next steps while you wait; you&#8217;ll only need the DNS to be live by the time you start n8n itself.<\/li>\n<\/ol>\n<h2>Step 3: Connect to Your VPS via SSH<\/h2>\n<p>Open a terminal on your own computer and connect using the IP address from your HostNoc email:<\/p>\n<pre><code>ssh root@your_vps_ip_address<\/code><\/pre>\n<p>The first time you connect, you&#8217;ll see a message asking you to confirm the server&#8217;s fingerprint \u2014 type yes and press Enter. Then paste in the root password from your email when prompted.<\/p>\n<span class=\"highlight\" ><strong>Heads up:\u00a0 <\/strong>nothing appears on screen while you type or paste the password \u2014 no dots, no cursor movement. That&#8217;s normal password-masking behavior in SSH, not a bug. Just paste it and press Enter.<\/span>\n\n<p>If everything worked, your prompt will change to something like root@your-server-name:~#. You&#8217;re in.<\/p>\n<h2>Step 4: Update the Server and Do Basic Housekeeping<\/h2>\n<p>Before installing anything, update the system so you&#8217;re not building on outdated packages:<\/p>\n<pre><code>apt update &amp;&amp; apt upgrade -y<\/code><\/pre>\n<p>This refreshes the list of available packages and installs any pending security updates. Press through any prompts with the default option if asked.<\/p>\n<h3>Open the firewall for the ports you&#8217;ll actually need<\/h3>\n<p>Ubuntu ships with ufw (Uncomplicated Firewall) available. Enabling it and explicitly allowing only the ports n8n&#8217;s setup needs is a simple, meaningful security improvement:<\/p>\n<pre><code>ufw allow OpenSSH\r\nufw allow 80\/tcp\r\nufw allow 443\/tcp\r\nufw enable<\/code><\/pre>\n<ul>\n<li>Port 22 (via OpenSSH) keeps your SSH access open \u2014 allow this first, or you&#8217;ll lock yourself out.<\/li>\n<li>Port 80 is needed briefly for Let&#8217;s Encrypt&#8217;s certificate verification and to redirect HTTP to HTTPS.<\/li>\n<li>Port 443 is your actual HTTPS traffic.<\/li>\n<\/ul>\n<p>Notice n8n&#8217;s own port, 5678, isn&#8217;t opened here at all \u2014 that&#8217;s intentional and explained in Step 6.<\/p>\n<h2>Step 5: Install Docker and Docker Compose<\/h2>\n<p>Docker isn&#8217;t preinstalled on a fresh Ubuntu VPS, so you&#8217;ll add it using Docker&#8217;s official installation script, which handles adding the correct repository for your Ubuntu version automatically:<\/p>\n<pre><code>curl -fsSL https:\/\/get.docker.com -o get-docker.sh\r\nsh get-docker.sh<\/code><\/pre>\n<p>Once it finishes, confirm both Docker and Docker Compose (which ships as a plugin with modern Docker installs) are available:<\/p>\n<p>docker &#8211;version<\/p>\n<p>docker compose version<\/p>\n<p>You should see version numbers printed for both. If either command isn&#8217;t found, re-run the install script \u2014 it&#8217;s safe to run more than once.<\/p>\n<h2>Step 6: Set Up n8n With Docker Compose<\/h2>\n<p>This is the core of the guide. You&#8217;ll create three things: a folder for your project, an environment file with your settings, and a Docker Compose file that tells Docker what to run.<\/p>\n<h3>6.1 Create your project folder<\/h3>\n<pre><code>mkdir n8n-compose\r\ncd n8n-compose<\/code><\/pre>\n<h3>6.2 Create the .env file<\/h3>\n<p>This file holds your personal settings \u2014 your domain, timezone, and the email used for SSL certificates. Create it with a text editor:<\/p>\n<pre><code>nano .env<\/code><\/pre>\n<p>Paste in the following, replacing the values with your own:<\/p>\n<pre><code># The top-level domain to serve from\r\nDOMAIN_NAME=yourdomain.com\r\n\r\n# The subdomain to serve n8n on \u2014 combined with DOMAIN_NAME this\r\n# gives you https:\/\/n8n.yourdomain.com\r\nSUBDOMAIN=n8n\r\n\r\n# Timezone used by n8n's Cron and scheduling nodes\r\nGENERIC_TIMEZONE=Asia\/Karachi\r\n\r\n# Email address used for your free SSL certificate (Let's Encrypt\r\n# sends renewal notices here if something goes wrong)\r\nSSL_EMAIL=you@example.com<\/code><\/pre>\n<p>Save and exit nano with Ctrl+O, then Enter, then Ctrl+X.<\/p>\n<span class=\"highlight\" ><strong>A note on the timezone:\u00a0 <\/strong>use a valid IANA timezone name like Asia\/Karachi, Europe\/London, or America\/New_York. If you&#8217;re unsure of your exact one, Asia\/Karachi covers Pakistan Standard Time.<\/span>\n\n<h3>6.3 Create the shared files folder<\/h3>\n<pre><code>mkdir local-files<\/code><\/pre>\n<p>This gives n8n a folder on your actual server that its workflows can read from and write to (useful for nodes like \u201cRead\/Write Files from Disk\u201d). Creating it manually \u2014 rather than letting Docker create it automatically \u2014 ensures it has the correct ownership from the start.<\/p>\n<h3>6.4 Create the Docker Compose file<\/h3>\n<pre><code>nano compose.yaml<\/code><\/pre>\n<p>Paste in the following exactly as-is. This is n8n&#8217;s own officially documented Compose configuration \u2014 it runs two containers: Traefik (handles HTTPS and routing) and n8n itself.<\/p>\n<pre><code>services:\r\n  traefik:\r\n    image: \"traefik\"\r\n    restart: always\r\n    command:\r\n      - \"--api.insecure=true\"\r\n      - \"--providers.docker=true\"\r\n      - \"--providers.docker.exposedbydefault=false\"\r\n      - \"--entrypoints.web.address=:80\"\r\n      - \"--entrypoints.web.http.redirections.entryPoint.to=websecure\"\r\n      - \"--entrypoints.web.http.redirections.entrypoint.scheme=https\"\r\n      - \"--entrypoints.websecure.address=:443\"\r\n      - \"--certificatesresolvers.mytlschallenge.acme.tlschallenge=true\"\r\n      - \"--certificatesresolvers.mytlschallenge.acme.email=${SSL_EMAIL}\"\r\n      - \"--certificatesresolvers.mytlschallenge.acme.storage=\/letsencrypt\/acme.json\"\r\n    ports:\r\n      - \"80:80\"\r\n      - \"443:443\"\r\n    volumes:\r\n      - traefik_data:\/letsencrypt\r\n      - \/var\/run\/docker.sock:\/var\/run\/docker.sock:ro\r\n \r\n  n8n:\r\n    image: docker.n8n.io\/n8nio\/n8n\r\n    restart: always\r\n    ports:\r\n      - \"127.0.0.1:5678:5678\"\r\n    labels:\r\n      - traefik.enable=true\r\n      - traefik.http.routers.n8n.rule=Host(`${SUBDOMAIN}.${DOMAIN_NAME}`)\r\n      - traefik.http.routers.n8n.tls=true\r\n      - traefik.http.routers.n8n.entrypoints=web,websecure\r\n      - traefik.http.routers.n8n.tls.certresolver=mytlschallenge\r\n      - traefik.http.middlewares.n8n.headers.SSLRedirect=true\r\n      - traefik.http.middlewares.n8n.headers.STSSeconds=315360000\r\n      - traefik.http.middlewares.n8n.headers.browserXSSFilter=true\r\n      - traefik.http.middlewares.n8n.headers.contentTypeNosniff=true\r\n      - traefik.http.middlewares.n8n.headers.forceSTSHeader=true\r\n      - traefik.http.middlewares.n8n.headers.SSLHost=${DOMAIN_NAME}\r\n      - traefik.http.middlewares.n8n.headers.STSIncludeSubdomains=true\r\n      - traefik.http.middlewares.n8n.headers.STSPreload=true\r\n      - traefik.http.routers.n8n.middlewares=n8n@docker\r\n    environment:\r\n      - N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true\r\n      - N8N_HOST=${SUBDOMAIN}.${DOMAIN_NAME}\r\n      - N8N_PORT=5678\r\n      - N8N_PROTOCOL=https\r\n      - NODE_ENV=production\r\n      - WEBHOOK_URL=https:\/\/${SUBDOMAIN}.${DOMAIN_NAME}\/\r\n      - GENERIC_TIMEZONE=${GENERIC_TIMEZONE}\r\n      - TZ=${GENERIC_TIMEZONE}\r\n    volumes:\r\n      - n8n_data:\/home\/node\/.n8n\r\n      - .\/local-files:\/files\r\n \r\nvolumes:\r\n  n8n_data:\r\n  traefik_data:<\/code><\/pre>\n<p>Save and exit the same way: Ctrl+O, Enter, Ctrl+X.<\/p>\n<h3>What this file is actually doing (in plain English)<\/h3>\n<ul>\n<li><strong>traefik service: <\/strong>listens on ports 80 and 443 (the ones you opened in the firewall), automatically redirects any HTTP visitor to HTTPS, and requests\/renews your SSL certificate from Let&#8217;s Encrypt without you ever touching Certbot manually.<\/li>\n<li><strong>n8n service: <\/strong>runs n8n itself, but notice the port mapping \u2014 127.0.0.1:5678:5678 means n8n is only reachable from inside the server, not directly from the internet. The only way in is through Traefik. This is why you didn&#8217;t open port 5678 in your firewall earlier; it was never meant to be public.<\/li>\n<li><strong>volumes: <\/strong>n8n_data is where n8n stores its database file and its encryption key (the key that protects your saved credentials) \u2014 this is the single most important thing to back up, covered in Step 9. traefik_data stores your SSL certificate so it isn&#8217;t re-requested every time the container restarts.<\/li>\n<\/ul>\n<h2>Step 7: Launch n8n<\/h2>\n<p>With your .env and compose.yaml files both in the n8n-compose folder, start everything with:<\/p>\n<pre><code>sudo docker compose up -d<\/code><\/pre>\n<p>The -d flag runs the containers in the background so they keep running after you close your terminal. The first run will take a minute or two as Docker downloads the Traefik and n8n images.<\/p>\n<p>Check that both containers are running:<\/p>\n<pre><code>docker compose ps<\/code><\/pre>\n<p>You should see two entries \u2014 traefik and n8n \u2014 both showing a status of Up.<\/p>\n<h2>Step 8: Open n8n and Create Your Owner Account<\/h2>\n<p>Give DNS and the SSL certificate a minute to settle, then visit:<\/p>\n<pre><code>https:\/\/n8n.yourdomain.com<\/code><\/pre>\n<p>(using your actual domain and subdomain from the .env file).<\/p>\n<p>The first time you load it, n8n will ask you to set up an owner account \u2014 an email address, name, and password for the main admin user of your instance. This is your own local account; it isn&#8217;t sent anywhere. Fill it in and you&#8217;ll land on the n8n editor, ready to build workflows.<\/p>\n<p>If the page doesn&#8217;t load, don&#8217;t panic \u2014 jump to the Troubleshooting section below before assuming something&#8217;s broken.<\/p>\n<h2>Step 9: Keep n8n Updated and Backed Up<\/h2>\n<p>A working n8n instance isn&#8217;t \u201cinstall once and forget.\u201d Two habits will save you real pain later.<\/p>\n<h2>Updating n8n<\/h2>\n<p>n8n releases new versions frequently. To update, from inside your n8n-compose folder:<\/p>\n<pre><code>docker compose pull\r\ndocker compose up -d<\/code><\/pre>\n<p>This pulls the latest image and recreates the container \u2014 your data in n8n_data isn&#8217;t touched.<\/p>\n<span class=\"highlight\" ><strong>Always back up before updating,\u00a0 <\/strong>especially before a major version jump. Check n8n&#8217;s release notes if you&#8217;re several versions behind, since major updates occasionally include breaking changes.<\/span>\n\n<h2>Backing up your data<\/h2>\n<p>Your entire n8n instance \u2014 workflows, credentials, and the encryption key that unlocks them \u2014 lives in the n8n_data Docker volume. Back it up periodically:<\/p>\n<pre><code>docker run --rm -v n8n-compose_n8n_data:\/data -v $(pwd):\/backup ubuntu \\\r\ntar czf \/backup\/n8n_data_backup_$(date +%F).tar.gz -C \/data .<\/code><\/pre>\n<p>Store that .tar.gz file somewhere off the server \u2014 downloaded locally, or synced to cloud storage. If your VPS ever fails, this backup plus your compose.yaml and .env files are everything you need to restore n8n elsewhere.<\/p>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>The domain doesn&#8217;t load \/ times out: <\/strong>Check that DNS has actually propagated \u2014 run nslookup n8n.yourdomain.com from your own computer and confirm it returns your VPS&#8217;s IP. DNS changes can take a few hours in some cases.<\/li>\n<li><strong>Browser shows a certificate warning: <\/strong>This usually means Traefik hasn&#8217;t finished obtaining the certificate yet, or port 80 isn&#8217;t reachable (Let&#8217;s Encrypt&#8217;s verification uses it). Confirm ufw status shows port 80 as allowed, and check Traefik&#8217;s logs: docker compose logs traefik<\/li>\n<li><strong>Containers show as \u201cRestarting\u201d or exit immediately: <\/strong>Check the logs for the specific container to see the actual error: docker compose logs n8n. A common cause is a typo in the .env file \u2014 double-check DOMAIN_NAME and SUBDOMAIN don&#8217;t have stray spaces or quotes.<\/li>\n<li><strong>\u201cPermission denied\u201d errors when running Docker commands: <\/strong>Either keep using sudo before Docker commands (as this guide does), or add your user to the docker group so you don&#8217;t need to: sudo usermod -aG docker $USER, then log out and back in.<\/li>\n<\/ul>\n<h2>And You&#8217;re Done!<\/h2>\n<p>At this point you have a real, production-shaped n8n instance: your own domain, automatic HTTPS, workflow data that survives restarts, and a repeatable way to update and back it up. That&#8217;s a meaningfully more solid setup than the plain docker run commands you&#8217;ll see in shorter tutorials \u2014 and it&#8217;s built directly on n8n&#8217;s own recommended configuration, not a simplified stand-in for it.<\/p>\n<p>From here, the natural next step is exploring n8n&#8217;s Quickstarts (<a href=\"https:\/\/docs.n8n.io\/\" target=\"_blank\" rel=\"noopener nofollow\">docs.n8n.io<\/a>) to start building your first workflow, or looking into scaling options (like queue mode) if you expect to run a large volume of automations later on.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;ve searched for \u201chow to install n8n on a VPS,\u201d you&#8217;ve probably already found half a dozen tutorials \u2014 and maybe gotten stuck on at<span class=\"excerpt-hellip\"> [\u2026]<\/span><\/p>\n","protected":false},"author":2,"featured_media":16441,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[330],"tags":[],"class_list":["post-16413","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai-hosting"],"acf":[],"_links":{"self":[{"href":"https:\/\/hostnoc-revamp.branex.org\/blog\/wp-json\/wp\/v2\/posts\/16413","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hostnoc-revamp.branex.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hostnoc-revamp.branex.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hostnoc-revamp.branex.org\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/hostnoc-revamp.branex.org\/blog\/wp-json\/wp\/v2\/comments?post=16413"}],"version-history":[{"count":15,"href":"https:\/\/hostnoc-revamp.branex.org\/blog\/wp-json\/wp\/v2\/posts\/16413\/revisions"}],"predecessor-version":[{"id":16450,"href":"https:\/\/hostnoc-revamp.branex.org\/blog\/wp-json\/wp\/v2\/posts\/16413\/revisions\/16450"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hostnoc-revamp.branex.org\/blog\/wp-json\/wp\/v2\/media\/16441"}],"wp:attachment":[{"href":"https:\/\/hostnoc-revamp.branex.org\/blog\/wp-json\/wp\/v2\/media?parent=16413"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hostnoc-revamp.branex.org\/blog\/wp-json\/wp\/v2\/categories?post=16413"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hostnoc-revamp.branex.org\/blog\/wp-json\/wp\/v2\/tags?post=16413"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}