{"id":15943,"date":"2014-10-31T13:32:43","date_gmt":"2014-10-31T08:02:43","guid":{"rendered":"https:\/\/2thenew.today\/blog\/?p=15943"},"modified":"2014-10-31T13:35:07","modified_gmt":"2014-10-31T08:05:07","slug":"hosting-wordpress-site-in-lxc","status":"publish","type":"post","link":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/","title":{"rendered":"Hosting WordPress Site in LXC"},"content":{"rendered":"<p>LXC (LinuX Containers) is an operating system\u2013level virtualization method for running multiple isolated Linux systems (containers) on a single control host. In this blog, we will explain, how to host a WordPress site in LXC &amp; migrate it to another server<\/p>\n<p>Installing LXC<\/p>\n<p>To downloads the package lists from the repositories and &#8220;updates&#8221; them to get information on the newest versions of packages and their dependencies,<\/p>\n<p>[js]<br \/>\napt-get update<br \/>\n[\/js]<\/p>\n<p>To install LXC ,<\/p>\n<p>[js]<br \/>\napt-get install lxc -y<br \/>\n[\/js]<\/p>\n<p>To create a container name application,<\/p>\n<p>[js]<br \/>\nlxc-create -n application -t ubuntu<br \/>\n[\/js]<\/p>\n<p>-n : Name of Container<br \/>\n-t : LXC template. In our case, we&#8217;re using ubuntu template<\/p>\n<p>It will take a while to create a container, once it has been created, it will give you username and password to login into your container.<\/p>\n<p>To list running status of containers,<\/p>\n<p>[js]<br \/>\nlxc-ls \u2013fancy<br \/>\n[\/js]<\/p>\n<p>[js]<\/p>\n<p>root@ip-172-31-34-48:~# lxc-ls &#8211;fancy<br \/>\nNAME         STATE    IPV4  IPV6  AUTOSTART<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br \/>\napplication  STOPPED  &#8211;     &#8211;     NO<br \/>\nroot@ip-172-31-34-48:~# <\/p>\n<p>[\/js]<\/p>\n<p>To start a container,<\/p>\n<p>[js]<br \/>\nlxc-start -n application -d<br \/>\n[\/js]<\/p>\n<p>It will give you a login prompt, login with the user credentials that you&#8217;ve got above.<\/p>\n<p>Installing WordPress Site<\/p>\n<p>Install all the necessary packages,<\/p>\n<p>[js]<br \/>\napt-get install mysql-server php5-mysql nginx php5-fpm php5-gd libssh2-php -y<br \/>\n[\/js]<\/p>\n<p>Create a Database,<\/p>\n<p>[js]<br \/>\nmysql -u root -p<br \/>\nCREATE DATABASE wordpress;<br \/>\nCREATE USER user@localhost IDENTIFIED BY &#8216;user123&#8217;;<br \/>\nGRANT ALL PRIVILEGES ON wordpress.* TO user@localhost;<br \/>\n[\/js]<\/p>\n<p>Download and untar wordpress<\/p>\n<p>[js]<br \/>\ncd \/tmp\/<br \/>\nwget http:\/\/wordpress.org\/latest.tar.gz<br \/>\ntar xzvf latest.tar.gz<br \/>\n[\/js]<\/p>\n<p>Configure wordpress<\/p>\n<p>[js]<br \/>\ncd \/tmp\/wordpress<br \/>\nmv wp-config-sample.php wp-config.php<br \/>\n[\/js]<\/p>\n<p>Make below changes in wp-config.php<\/p>\n<p>[js]<\/p>\n<p>\/\/ ** MySQL settings &#8211; You can get this info from your web host ** \/\/<br \/>\n\/** The name of the database for WordPress *\/<br \/>\ndefine(&#8216;DB_NAME&#8217;, &#8216;wordpress&#8217;);<\/p>\n<p>\/** MySQL database username *\/<br \/>\ndefine(&#8216;DB_USER&#8217;, &#8216;user&#8217;);<\/p>\n<p>\/** MySQL database password *\/<br \/>\ndefine(&#8216;DB_PASSWORD&#8217;, &#8216;user123&#8217;);<\/p>\n<p>[\/js]<\/p>\n<p>copy files to document root<\/p>\n<p>[js]<br \/>\nsudo rsync -avP \/tmp\/wordpress\/ \/usr\/share\/nginx\/html<br \/>\n[\/js]<\/p>\n<p>Add an iptables rule to the prerouting table of host machine, to forward packets on port 80 to our nginx container&#8217;s port 80.<\/p>\n<p>[js]<br \/>\niptables -t nat -A PREROUTING -i eth0 -p tcp &#8211;dport 80 -j DNAT &#8211;to 10.0.3.245:80<br \/>\n[\/js]<\/p>\n<p>Now you can access your site, by<br \/>\nhttp:\/\/your-public-ipaddress ( host machine )<\/p>\n<p>Migrating Your lxc container to another host<\/p>\n<p>Install LXC on destination host and stop LXC on your source host<\/p>\n<p>[js]<br \/>\nrsync -va \/var\/lib\/lxc\/container-name destination-host-ip:\/var\/lib\/lxc\/<br \/>\n[\/js]<\/p>\n<p>start container on your destination host.<\/p>\n<p>Once you&#8217;re done with your containers, you can stop it<\/p>\n<p>[js]<br \/>\nlxc-stop -n application<br \/>\n[\/js]<\/p>\n<p>or if you want to terminate your container, you can destroy it<\/p>\n<p>[js]<br \/>\nlxc-destroy -n application<br \/>\n[\/js]<\/p>\n<p>Thanks,<br \/>\nNikhil Kumar Sharma<\/p>\n","protected":false},"excerpt":{"rendered":"<p>LXC (LinuX Containers) is an operating system\u2013level virtualization method for running multiple isolated Linux systems (containers) on a single control host. In this blog, we will explain, how to host a WordPress site in LXC &amp; migrate it to another server Installing LXC To downloads the package lists from the repositories and &#8220;updates&#8221; them to [&hellip;]<\/p>\n","protected":false},"author":124,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":34,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-15943","post","type-post","status-publish","format-standard","hentry","category-technology"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"LXC (LinuX Containers) is an operating system\u2013level virtualization method for running multiple isolated Linux systems (containers) on a single control host. In this blog, we will explain, how to host a WordPress site in LXC &amp; migrate it to another server Installing LXC To downloads the package lists from the repositories and &quot;updates&quot; them to\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Nikhil Kumar Sharma\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Hosting WordPress Site in LXC | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"LXC (LinuX Containers) is an operating system\u2013level virtualization method for running multiple isolated Linux systems (containers) on a single control host. In this blog, we will explain, how to host a WordPress site in LXC &amp; migrate it to another server Installing LXC To downloads the package lists from the repositories and &quot;updates&quot; them to\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Hosting WordPress Site in LXC | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"LXC (LinuX Containers) is an operating system\u2013level virtualization method for running multiple isolated Linux systems (containers) on a single control host. In this blog, we will explain, how to host a WordPress site in LXC &amp; migrate it to another server Installing LXC To downloads the package lists from the repositories and &quot;updates&quot; them to\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hosting-wordpress-site-in-lxc\\\/#article\",\"name\":\"Hosting WordPress Site in LXC | TO THE NEW Blog\",\"headline\":\"Hosting WordPress Site in LXC\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/nikhil-sharma\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2014-10-31T13:32:43+05:30\",\"dateModified\":\"2014-10-31T13:35:07+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hosting-wordpress-site-in-lxc\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hosting-wordpress-site-in-lxc\\\/#webpage\"},\"articleSection\":\"Technology\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hosting-wordpress-site-in-lxc\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hosting-wordpress-site-in-lxc\\\/#listItem\",\"name\":\"Hosting WordPress Site in LXC\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hosting-wordpress-site-in-lxc\\\/#listItem\",\"position\":3,\"name\":\"Hosting WordPress Site in LXC\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/nikhil-sharma\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/nikhil-sharma\\\/\",\"name\":\"Nikhil Kumar Sharma\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hosting-wordpress-site-in-lxc\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/910a28868c1246d9bb93ff99e7b41d629230d6d8c48e9e245788b833039ff175?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Nikhil Kumar Sharma\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hosting-wordpress-site-in-lxc\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hosting-wordpress-site-in-lxc\\\/\",\"name\":\"Hosting WordPress Site in LXC | TO THE NEW Blog\",\"description\":\"LXC (LinuX Containers) is an operating system\\u2013level virtualization method for running multiple isolated Linux systems (containers) on a single control host. In this blog, we will explain, how to host a WordPress site in LXC & migrate it to another server Installing LXC To downloads the package lists from the repositories and \\\"updates\\\" them to\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/hosting-wordpress-site-in-lxc\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/nikhil-sharma\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/nikhil-sharma\\\/#author\"},\"datePublished\":\"2014-10-31T13:32:43+05:30\",\"dateModified\":\"2014-10-31T13:35:07+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Hosting WordPress Site in LXC | TO THE NEW Blog","description":"LXC (LinuX Containers) is an operating system\u2013level virtualization method for running multiple isolated Linux systems (containers) on a single control host. In this blog, we will explain, how to host a WordPress site in LXC & migrate it to another server Installing LXC To downloads the package lists from the repositories and \"updates\" them to","canonical_url":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/#article","name":"Hosting WordPress Site in LXC | TO THE NEW Blog","headline":"Hosting WordPress Site in LXC","author":{"@id":"https:\/\/2thenew.today\/blog\/author\/nikhil-sharma\/#author"},"publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"},"datePublished":"2014-10-31T13:32:43+05:30","dateModified":"2014-10-31T13:35:07+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/#webpage"},"articleSection":"Technology"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.today\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.today\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/#listItem","name":"Hosting WordPress Site in LXC"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/#listItem","position":3,"name":"Hosting WordPress Site in LXC","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.today\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.today\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.today\/blog\/author\/nikhil-sharma\/#author","url":"https:\/\/2thenew.today\/blog\/author\/nikhil-sharma\/","name":"Nikhil Kumar Sharma","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/910a28868c1246d9bb93ff99e7b41d629230d6d8c48e9e245788b833039ff175?s=96&d=mm&r=g","width":96,"height":96,"caption":"Nikhil Kumar Sharma"}},{"@type":"WebPage","@id":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/#webpage","url":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/","name":"Hosting WordPress Site in LXC | TO THE NEW Blog","description":"LXC (LinuX Containers) is an operating system\u2013level virtualization method for running multiple isolated Linux systems (containers) on a single control host. In this blog, we will explain, how to host a WordPress site in LXC & migrate it to another server Installing LXC To downloads the package lists from the repositories and \"updates\" them to","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.today\/blog\/author\/nikhil-sharma\/#author"},"creator":{"@id":"https:\/\/2thenew.today\/blog\/author\/nikhil-sharma\/#author"},"datePublished":"2014-10-31T13:32:43+05:30","dateModified":"2014-10-31T13:35:07+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.today\/blog\/#website","url":"https:\/\/2thenew.today\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Hosting WordPress Site in LXC | TO THE NEW Blog","og:description":"LXC (LinuX Containers) is an operating system\u2013level virtualization method for running multiple isolated Linux systems (containers) on a single control host. In this blog, we will explain, how to host a WordPress site in LXC &amp; migrate it to another server Installing LXC To downloads the package lists from the repositories and &quot;updates&quot; them to","og:url":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/","og:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Hosting WordPress Site in LXC | TO THE NEW Blog","twitter:description":"LXC (LinuX Containers) is an operating system\u2013level virtualization method for running multiple isolated Linux systems (containers) on a single control host. In this blog, we will explain, how to host a WordPress site in LXC &amp; migrate it to another server Installing LXC To downloads the package lists from the repositories and &quot;updates&quot; them to","twitter:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"15943","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 22:29:11","updated":"2024-02-29 09:33:28","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.today\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.today\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHosting WordPress Site in LXC\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.today\/blog"},{"label":"Technology","link":"https:\/\/2thenew.today\/blog\/category\/technology\/"},{"label":"Hosting WordPress Site in LXC","link":"https:\/\/2thenew.today\/blog\/hosting-wordpress-site-in-lxc\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/15943","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/users\/124"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/comments?post=15943"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/15943\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/media?parent=15943"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/categories?post=15943"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/tags?post=15943"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}