{"id":11293,"date":"2022-02-15T21:05:44","date_gmt":"2022-02-15T18:05:44","guid":{"rendered":"https:\/\/kifarunix.com\/?p=11293"},"modified":"2024-03-09T09:52:12","modified_gmt":"2024-03-09T06:52:12","slug":"install-owncloud-server-on-ubuntu-22-04","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/install-owncloud-server-on-ubuntu-22-04\/","title":{"rendered":"Install ownCloud Server on Ubuntu 22.04"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/ownCloud.png\" alt=\"Install ownCloud Server\" class=\"wp-image-17261\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/ownCloud.png 1200w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/06\/ownCloud-768x402.png 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure><\/div>\n\n\n<p>In this tutorial, you will learn how to install ownCloud server on Ubuntu 22.04. ownCloud is a collaboration tool that allows you to easily and securely share files and folders with others.<\/p>\n\n\n\n<div class=\"wp-block-rank-math-toc-block\" id=\"rank-math-toc\"><h2>Table of Contents<\/h2><nav><ul><li><a href=\"#install-own-cloud-server-on-ubuntu-22-04\">Install ownCloud Server on Ubuntu 22.04<\/a><ul><li><a href=\"#install-and-setup-lamp-lemp-stack-on-ubuntu-22-04\">Install and Setup LAMP\/LEMP Stack on Ubuntu 22.04<\/a><\/li><li><a href=\"#install-own-cloud-repository\">Install ownCloud repository<\/a><\/li><li><a href=\"#finalize-configuration-using-the-command-line\">Finalize configuration using the Command Line<\/a><\/li><li><a href=\"#update-trusted-own-cloud-trusted-domains\">Update Trusted ownCloud Trusted Domains<\/a><\/li><li><a href=\"#finalize-configuration-using-web-browser\">Finalize configuration using Web browser<\/a><\/li><\/ul><\/li><\/ul><\/nav><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"install-own-cloud-server-on-ubuntu-22-04\">Install ownCloud Server on Ubuntu 22.04<\/h2>\n\n\n\n<p>ownCloud is available in different additions as highlighted on their <a href=\"https:\/\/owncloud.com\/pricing\/\" target=\"_blank\" rel=\"noreferrer noopener\">pricing<\/a> pages.<\/p>\n\n\n\n<p>In this tutorial, we will learn how to install open source version of ownCloud on Ubuntu 22.04.<\/p>\n\n\n\n<p>You can install ownCloud using the Helper Script or from the ownCloud Ubuntu repositories. We will use the later in this setup.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"install-and-setup-lamp-lemp-stack-on-ubuntu-22-04\">Install and Setup LAMP\/LEMP Stack on Ubuntu 22.04<\/h4>\n\n\n\n<p>ownCloud is a web application that requires either LAMP\/LEMP stack to run. In this setup, we will use LAMP stack.<\/p>\n\n\n\n<p>As of this writing, <em>In an <a href=\"https:\/\/doc.owncloud.com\/server\/next\/admin_manual\/installation\/system_requirements.html#officially-recommended-environment\" target=\"_blank\" rel=\"noreferrer noopener\">officially recommended environment<\/a>, an ownCloud system should have the following tools for best performance,&nbsp;stability,&nbsp;support&nbsp;and&nbsp;full functionality<\/em>;<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Operating System<\/td><td>Ubuntu 20.04 LTS<\/td><\/tr><tr><td>Database<\/td><td>MariaDB 10.5<\/td><\/tr><tr><td>Web server<\/td><td>Apache 2.4 with&nbsp;<code>prefork and mod_php<\/code><\/td><\/tr><tr><td>PHP Runtime<\/td><td>7.4<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>To begin with, run the commands below to install Apache and MariaDB.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt install apache2 mariadb-server -y<\/code><\/pre>\n\n\n\n<p>Install PHP 7.4 and Other Required PHP 7.4 Modules;<\/p>\n\n\n\n<p>Please note that Ubuntu 22.04 ships with PHP 8.x in its default repositories. Thus, check this post on how you can enable PHP 7.4 repositories;<\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-php-7-1-7-2-7-3-7-4-on-ubuntu-22-04\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install PHP 7.1\/7.2\/7.3\/7.4 on Ubuntu 22.04<\/a><\/p>\n\n\n\n<p>Once done, install required ownCloud PHP and its modules;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt install php7.4 libapache2-mod-php7.4 php7.4-{mysql,intl,curl,json,gd,xml,mbstring,zip} -y<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"install-own-cloud-server-on-ubuntu\">Install ownCloud Server on Ubuntu<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"install-own-cloud-repository\">Install ownCloud repository<\/h4>\n\n\n\n<p>Owncloud is not included by default on Ubuntu 22.04 repositories. However, there is repo for each Linux distribution maintained by ownCloud itself.<\/p>\n\n\n\n<p>There are available different&nbsp;<a href=\"https:\/\/software.opensuse.org\/download\/package?package=owncloud-complete-files&amp;project=isv%3AownCloud%3Aserver%3A10\" target=\"_blank\" rel=\"noreferrer noopener\">ownCloud repos<\/a>&nbsp;for various Debian release versions.<\/p>\n\n\n\n<p>At the moment, the repos for Ubuntu 22.04 are not yet released. Hence, we will use the repos for Ubuntu 20.04.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt install curl gnupg2 -y<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>echo 'deb http:\/\/download.opensuse.org\/repositories\/isv:\/ownCloud:\/server:\/10\/Ubuntu_20.04\/ \/' &gt; \/etc\/apt\/sources.list.d\/isv:ownCloud:server:10.list<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -fsSL https:\/\/download.opensuse.org\/repositories\/isv:ownCloud:server:10\/Ubuntu_20.04\/Release.key | gpg --dearmor &gt; \/etc\/apt\/trusted.gpg.d\/isv_ownCloud_server_10.gpg<\/code><\/pre>\n\n\n\n<p>Next, once again, resynchronize system packages to their latest versions.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt update<\/code><\/pre>\n\n\n\n<p>Once the update is done, install owncloud.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt install owncloud-complete-files -y<\/code><\/pre>\n\n\n\n<pre class=\"scroll-box\"><code>\nReading package lists... Done\nBuilding dependency tree... Done\nReading state information... Done\nSuggested packages:\n  owncloud-deps\nThe following NEW packages will be installed:\n  owncloud-complete-files\n0 upgraded, 1 newly installed, 0 to remove and 867 not upgraded.\nNeed to get 65.9 MB of archives.\nAfter this operation, 285 MB of additional disk space will be used.\nGet:1 http:\/\/download.opensuse.org\/repositories\/isv:\/ownCloud:\/server:\/10\/Ubuntu_20.04  owncloud-complete-files 10.9.1-1+6.1 [65.9 MB]\nFetched 65.9 MB in 50s (1,318 kB\/s)                                                                                                                                        \nSelecting previously unselected package owncloud-complete-files.\n(Reading database ... 203631 files and directories currently installed.)\nPreparing to unpack ...\/owncloud-complete-files_10.9.1-1+6.1_all.deb ...\nUnpacking owncloud-complete-files (10.9.1-1+6.1) ...\nSetting up owncloud-complete-files (10.9.1-1+6.1) ...\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"create-own-cloud-apache-site-configuration\">Create ownCloud Apache Site Configuration<\/h3>\n\n\n\n<p>When ownCloud is installed, it places its web files under the&nbsp;<strong><code>\/var\/www\/owncloud<\/code><\/strong>&nbsp;directory.<\/p>\n\n\n\n<p>In order to configure Apache to server the ownCloud content, you need to create ownCloud Apache site configuration file where you can define the ownCloud directory as your root directory.<\/p>\n\n\n\n<p>Copy and paste the command below to create&nbsp;<code>owncloud.conf<\/code>&nbsp;configuration file.<\/p>\n\n\n\n<pre class=\"scroll-box\"><code>\ncat &gt; \/etc\/apache2\/sites-available\/owncloud.conf &lt;&lt; 'EOL'\nAlias \/ \"\/var\/www\/owncloud\/\"\n\n&lt;Directory \/var\/www\/owncloud\/&gt;\n  Options +FollowSymlinks\n  AllowOverride All\n\n &lt;IfModule mod_dav.c&gt;\n  Dav off\n &lt;\/IfModule&gt;\n\n SetEnv HOME \/var\/www\/owncloud\n SetEnv HTTP_HOME \/var\/www\/owncloud\n\n&lt;\/Directory&gt;\nEOL\n<\/code><\/pre>\n\n\n\n<p>Enable ownCloud site.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>a2ensite owncloud.conf<\/code><\/pre>\n\n\n\n<p>Disable default Apache site;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>a2dissite 000-default.conf<\/code><\/pre>\n\n\n\n<p>Enable additional recommended Apache modules.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>a2enmod rewrite mime unique_id<\/code><\/pre>\n\n\n\n<p>Verify Apache configuration syntax.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apachectl -t<\/code><\/pre>\n\n\n\n<p>Restart Apache if the configuration is fine.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl restart apache2<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"create-own-cloud-database-and-user\">Create ownCloud Database and User<\/h3>\n\n\n\n<p>Run the&nbsp;<code><strong>mysql_secure_installation<\/strong><\/code>&nbsp;script to remove test databases, disable remote root login e.t.c.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql_secure_installation<\/code><\/pre>\n\n\n\n<p>Login to MariaDB database server and create ownCloud database and database user.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql<\/code><\/pre>\n\n\n\n<p>If you already enabled password authentication, then login via;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mysql -u root -p<\/code><\/pre>\n\n\n\n<p>Next, execute the commands below to create ownCloud database and database user.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>create database ownclouddb;<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>grant all on ownclouddb.* to ocadmin@localhost identified by \"StrongP@ss\";<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>flush privileges;\nquit<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"finalize-own-cloud-configuration\">Finalize ownCloud Configuration<\/h3>\n\n\n\n<p>There are two way in which you can finalize ownCloud configuration;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"#cli\">Finalize configuration using the Command Line<\/a><\/li>\n\n\n\n<li><a href=\"#web-browser\">Finalize configuration using Web browser<\/a><\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"finalize-configuration-using-the-command-line\">Finalize configuration using the Command Line<\/h4>\n\n\n\n<p>To complete ownCloud installation and configuration using command line;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>navigate to ownCloud web root directory<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/var\/www\/owncloud<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>run the command below within the ownCloud directory. <strong>Be sure to set the correct database credentials<\/strong> and <strong>provide your administrator password<\/strong>.<\/li>\n<\/ul>\n\n\n\n<pre class=\"scroll-box\"><code>\nsudo -u www-data php occ maintenance:install \\\n   --database \"mysql\" \\\n   --database-name \"ownclouddb\" \\\n   --database-user \"ocadmin\"\\\n   --database-pass \"StrongP@ss\" \\\n   --admin-user \"kifarunixadmin\" \\\n   --admin-pass \"password\"\n<\/code><\/pre>\n\n\n\n<p>The command above setups ownCloud database and create and admin user.<\/p>\n\n\n\n<p>When all is done, you will see such a message.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>ownCloud was successfully installed<\/strong><\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"update-trusted-own-cloud-trusted-domains\">Update Trusted ownCloud Trusted Domains<\/h4>\n\n\n\n<p><em>All URLs used to access your ownCloud server must be white-listed in your&nbsp;<code>config.php<\/code>&nbsp;file, under the&nbsp;<code>trusted_domains<\/code>&nbsp;setting. Users are allowed to log into ownCloud only when they point their browsers to a URL that is listed in the&nbsp;<code>trusted_domains<\/code>&nbsp;setting.<\/em><\/p>\n\n\n\n<p>With command line install completion method, you can edit the <code>\/var\/www\/owncloud\/config\/config.php<\/code> configuration file and update the list of trusted domains.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>vim \/var\/www\/owncloud\/config\/config.php<\/code><\/pre>\n\n\n\n<p>By default, only localhost is whitelisted as shown;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  'trusted_domains' =&gt;\n  array (\n    0 =&gt; 'localhost',\n  ),<\/code><\/pre>\n\n\n\n<p>You can add more addresses, for example;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  'trusted_domains' =&gt;\n  array (\n    0 =&gt; 'localhost',\n    1 =&gt; 'oc.kifarunix-demo.com',\n    2 =&gt; '192.168.57.43',\n  ),<\/code><\/pre>\n\n\n\n<p>You can now access your ownCloud using either the server&#8217;s IP or the server&#8217;s domain, <strong>http:\/\/&lt;server-ip-or-domain&gt;<\/strong>.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"finalize-configuration-using-web-browser\">Finalize configuration using Web browser<\/h4>\n\n\n\n<p>To complete ownCloud installation and configuration via browser, you need to access it via the browser using the address&nbsp;<strong>http:\/\/&lt;server-IP&gt;<\/strong>.<\/p>\n\n\n\n<p>When you access the ownCloud server address, you are welcomed by the ownCloud configuration interface.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set the ownCloud admin user and password and define the ownCloud data directory (<strong>\/var\/www\/owncloud\/data<\/strong>&nbsp;is the default).<\/li>\n<\/ul>\n\n\n\n<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/create-admin-acc.png\" class=\"td-modal-image\"><figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1172\" height=\"650\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/create-admin-acc.png\" alt=\"Install ownCloud Desktop Client on Ubuntu 22.04\" class=\"wp-image-11055\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/create-admin-acc.png?v=1638902136 1172w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/create-admin-acc-768x426.png?v=1638902136 768w\" sizes=\"(max-width: 1172px) 100vw, 1172px\" \/><\/figure><\/a><\/div>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/create-admin-acc.png\"><\/a><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set the database connection details as created above.<\/li>\n<\/ul>\n\n\n\n<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/define-db-connection-details.png\" class=\"td-modal-image\"><figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1302\" height=\"820\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/define-db-connection-details.png\" alt=\"Install ownCloud Desktop Client on Ubuntu 22.04\" class=\"wp-image-11056\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/define-db-connection-details.png?v=1638902180 1302w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/define-db-connection-details-768x484.png?v=1638902180 768w\" sizes=\"(max-width: 1302px) 100vw, 1302px\" \/><\/figure><\/a><\/div>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/define-db-connection-details.png\"><\/a><\/p>\n\n\n\n<p>Once you done with configuration, click&nbsp;<strong>Finish setup<\/strong>&nbsp;to finalize ownCloud configuration on Ubuntu 22.04.<\/p>\n\n\n\n<p>When configuration completes, you will get to a login page.<\/p>\n\n\n\n<p>Enter your admin user login details to login to ownCloud dashboard.<\/p>\n\n\n\n<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/owncloud-login-page.png\" class=\"td-modal-image\"><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1158\" height=\"770\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/owncloud-login-page.png\" alt=\"Install ownCloud Server on Debian 11\" class=\"wp-image-11057\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/owncloud-login-page.png?v=1638902219 1158w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/owncloud-login-page-768x511.png?v=1638902219 768w\" sizes=\"(max-width: 1158px) 100vw, 1158px\" \/><\/figure><\/a><\/div>\n\n\n\n<p>If you lost ownCloud Admin password, you can always reset using the command below;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo -u www-data php \/var\/www\/owncloud\/occ user:resetpassword username<\/code><\/pre>\n\n\n\n<p>For example, to reset the password for admin user, kifarunixadmi;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo -u www-data php \/var\/www\/owncloud\/occ user:resetpassword kifarunixadmin<\/code><\/pre>\n\n\n\n<p>Login with your Admin user account details you defined during setup. After a successful login, you will land on ownCloud dashboard.<\/p>\n\n\n\n<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/owncloud-ui.png\" class=\"td-modal-image\"><figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1911\" height=\"593\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/owncloud-ui.png\" alt=\"\" class=\"wp-image-11058\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/owncloud-ui.png?v=1638902243 1911w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/owncloud-ui-768x238.png?v=1638902243 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/owncloud-ui-1536x477.png?v=1638902243 1536w\" sizes=\"(max-width: 1911px) 100vw, 1911px\" \/><\/figure><\/a><\/div>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/12\/owncloud-ui.png\"><\/a><\/p>\n\n\n\n<p>And that is it on how to install ownCloud Server on Ubuntu. You can now create different folders and share with your relevant users. Enjoy.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"further-reading\">Further Reading<\/h3>\n\n\n\n<p>Read more on <a href=\"https:\/\/doc.owncloud.com\/server\/next\/admin_manual\/\" target=\"_blank\" rel=\"noreferrer noopener\">ownCloud Documentation<\/a> page.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"other-tutorials\">Other tutorials<\/h3>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-owncloud-desktop-client-on-ubuntu-20-04\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install ownCloud Desktop Client on Ubuntu 20.04<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/configure-owncloud-openldap-authentication\/\" target=\"_blank\" rel=\"noreferrer noopener\">Configure ownCloud OpenLDAP Authentication<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, you will learn how to install ownCloud server on Ubuntu 22.04. ownCloud is a collaboration tool that allows you to easily and<\/p>\n","protected":false},"author":2,"featured_media":11059,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_lock_modified_date":false,"footnotes":""},"categories":[121,39],"tags":[4581,4586,4584,4582,4583,4412,4585],"class_list":["post-11293","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-howtos","category-storage","tag-install-owncloud-on-ubuntu","tag-install-owncloud-on-ubuntu-22-04","tag-owncloud-install","tag-owncloud-installation-ubuntu","tag-owncloud-ubuntu-22-04","tag-ubuntu-22-04","tag-ubuntu-owncloud","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50","resize-featured-image"],"_links":{"self":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/11293"}],"collection":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/comments?post=11293"}],"version-history":[{"count":8,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/11293\/revisions"}],"predecessor-version":[{"id":20404,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/11293\/revisions\/20404"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media\/11059"}],"wp:attachment":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media?parent=11293"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/categories?post=11293"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/tags?post=11293"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}