{"id":402,"date":"2016-09-30T12:42:30","date_gmt":"2016-09-30T12:42:30","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=402"},"modified":"2018-01-31T08:56:43","modified_gmt":"2018-01-31T14:56:43","slug":"install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/","title":{"rendered":"Install ownCloud 9 with Nginx and PHP-FPM on an Ubuntu 16.04 Cloud"},"content":{"rendered":"<p>ownCloud is an enterprise file sharing solution for online collaboration and storage that you can use to sync and share your files, calendar, contacts and much more. It&#8217;s functionality is similar to the widely used Dropbox but with a very significant difference. OwnCloud is free and open source thus allowing anyone to install and operate it free of charge on a <a href=\"https:\/\/www.linuxcloudvps.com\/\" target=\"_blank\">Linux Cloud<\/a>.<!--more--><\/p>\n<p>In this article, we will install ownCloud on an <a href=\"https:\/\/www.linuxcloudvps.com\/ubuntu-cloud-vps.html\" target=\"_blank\">Ubuntu 16.04 Cloud<\/a> and configure Nginx to serve the ownCloud website. We assume that you have a working LEMP (Linux, Nginx, MySQL and PHP-FPM) stack on your Ubuntu 16.06 server.<\/p>\n<h4>REQUIREMENTS<\/h4>\n<p>We will be using our LC VPS-1 <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\">Cloud VPS hosting<\/a> plan for this tutorial.<\/p>\n<h4>LOG IN TO YOUR SERVER VIA SSH<\/h4>\n<pre># ssh root@server_ip<\/pre>\n<p>You can check whether you have the proper Ubuntu version installed on your server with the following command:<\/p>\n<pre># lsb_release -a<\/pre>\n<p>You should get this output:<\/p>\n<pre>Distributor ID: Ubuntu\r\nDescription:    Ubuntu 16.04 LTS\r\nRelease:        16.04\r\nCodename:       xenial<\/pre>\n<h4>UPDATE THE SYSTEM<\/h4>\n<p>Make sure your server is fully up to date using:<\/p>\n<pre># apt-get update &amp;&amp; apt-get upgrade<\/pre>\n<p>After this update is completed, install some much-needed PHP packages. Enter the following command:<\/p>\n<pre># apt-get install wget php-zip php-curl php-mysql php-gd php-xml<\/pre>\n<p>Restart PHP-FPM:<\/p>\n<pre># systemctl restart php7.0-fpm<\/pre>\n<p>You can now create a database that you can use later when installing ownCloud from a browser. Enter MySQL as root and execute the following queries:<\/p>\n<pre># mysql -u root -p\r\n\r\nmysql&gt; create database owncloud;\r\n\r\nmysql&gt; grant all privileges on owncloud.* to owncloud@localhost identified by &#039;your_password&#039;;\r\n\r\nmysql&gt; flush privileges;\r\n\r\nmysql&gt; exit\r\nBye<\/pre>\n<h4>INSTALL OWNCLOUD<\/h4>\n<p>We will download the latest ownCloud version (<strong>9.1.1<\/strong>) into the <strong>\/opt<\/strong> directory, unpack the archive and then move it to <strong>\/var\/www\/html\/<\/strong>. The below commands do exactly that:<\/p>\n<pre># cd \/opt\/\r\n\r\n# wget https:\/\/download.owncloud.org\/community\/owncloud-9.1.1.tar.bz2\r\n\r\n# tar xfv owncloud-9.1.1.tar.bz2\r\n\r\n# mv owncloud\/ \/var\/www\/html\/owncloud\/<\/pre>\n<p>Assign the proper ownership of files and directories so your Nginx web server can actually read the data:<\/p>\n<pre># chown www-data: -R \/var\/www\/html\/owncloud\/<\/pre>\n<p>Now create a config file in Nginx so you can use your domain to access ownCloud. Open the below file, we are using <strong>nano<\/strong> as text editor, however, you can use one according to your needs.<\/p>\n<pre># nano \/etc\/nginx\/sites-available\/your_domain<\/pre>\n<p>Paste the underneath lines:<\/p>\n<pre>server {\r\n    server_name your_domain;\r\n\r\n    access_log \/var\/log\/nginx\/your_domain-access.log;\r\n    error_log \/var\/log\/nginx\/your_domain-error.log;\r\n    root \/var\/www\/html\/owncloud;\r\n\r\n    location \/ {\r\n        index index.php;\r\n        try_files $uri $uri\/ \/index.php$is_args$args;\r\n    }\r\n\r\n    location ~ \\.php$ {\r\n        include snippets\/fastcgi-php.conf;\r\n        fastcgi_pass unix:\/run\/php\/php7.0-fpm.sock;\r\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n    }\r\n}<\/pre>\n<p>Don&#8217;t forget to replace the <strong>your_domain<\/strong> values with your actual domain. Save and close the file. Then, enable it by creating a symlink:<\/p>\n<pre># ln -s \/etc\/nginx\/sites-available\/your_domain \/etc\/nginx\/sites-enabled\/<\/pre>\n<p>Test the Nginx configuration:<\/p>\n<pre># nginx -t<\/pre>\n<p>If everything is successful, restart Nginx so the changes can take effect:<\/p>\n<pre># service nginx restart<\/pre>\n<p>Now open your favorite web browser and navigate to <strong>http:\/\/your_domain<\/strong> to finish the ownCloud installation. You will be welcomed by the installation page as shown in the image below:<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-406\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/09\/owncloud-ubuntu-16-04.png\" alt=\"owncloud on ubuntu 16.04\" width=\"389\" height=\"913\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/09\/owncloud-ubuntu-16-04.png 389w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/09\/owncloud-ubuntu-16-04-128x300.png 128w\" sizes=\"(max-width: 389px) 100vw, 389px\" \/><\/p>\n<p>Create your admin account, configure the database with the values that you used during the database creation and finish the installation.<\/p>\n<p>Congratulations, you now have a working ownCloud installation on your <a href=\"https:\/\/www.linuxcloudvps.com\/ubuntu-cloud-vps.html\" target=\"_blank\">Ubuntu 16.04 Cloud<\/a>.<\/p>\n<hr \/>\n<p>Of course, you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\">Linux Cloud Hosting<\/a> services, in which case you can simply ask our expert Linux admins to <strong>install ownCloud<\/strong> stack for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>ownCloud is an enterprise file sharing solution for online collaboration and storage that you can use to sync and share your files, calendar, contacts and much more. It&#8217;s functionality is similar to the widely used Dropbox but with a very significant difference. OwnCloud is free and open source thus allowing anyone to install and operate &#8230; <a title=\"Install ownCloud 9 with Nginx and PHP-FPM on an Ubuntu 16.04 Cloud\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/\" aria-label=\"More on Install ownCloud 9 with Nginx and PHP-FPM on an Ubuntu 16.04 Cloud\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":404,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[132,72,47],"class_list":["post-402","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-linuxcloudvps","tag-owncloud","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Install ownCloud 9 with Nginx and PHP-FPM on an Ubuntu 16.04 Cloud | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"ownCloud is an enterprise file sharing solution for online collaboration and storage that you can use to sync and share your files, calendar, contacts and\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install ownCloud 9 with Nginx and PHP-FPM on an Ubuntu 16.04 Cloud | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"ownCloud is an enterprise file sharing solution for online collaboration and storage that you can use to sync and share your files, calendar, contacts and\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2016-09-30T12:42:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-31T14:56:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/09\/owncloud-ubuntu.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"213\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"Install ownCloud 9 with Nginx and PHP-FPM on an Ubuntu 16.04 Cloud\",\"datePublished\":\"2016-09-30T12:42:30+00:00\",\"dateModified\":\"2018-01-31T14:56:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/\"},\"wordCount\":482,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/09\/owncloud-ubuntu.jpg\",\"keywords\":[\"linuxcloudvps\",\"owncloud\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/\",\"name\":\"Install ownCloud 9 with Nginx and PHP-FPM on an Ubuntu 16.04 Cloud | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/09\/owncloud-ubuntu.jpg\",\"datePublished\":\"2016-09-30T12:42:30+00:00\",\"dateModified\":\"2018-01-31T14:56:43+00:00\",\"description\":\"ownCloud is an enterprise file sharing solution for online collaboration and storage that you can use to sync and share your files, calendar, contacts and\",\"breadcrumb\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#primaryimage\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/09\/owncloud-ubuntu.jpg\",\"contentUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/09\/owncloud-ubuntu.jpg\",\"width\":300,\"height\":213,\"caption\":\"owncloud on ubuntu\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.linuxcloudvps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install ownCloud 9 with Nginx and PHP-FPM on an Ubuntu 16.04 Cloud\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#website\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"contentUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"http:\/\/www.facebook.com\/LinuxCloudVPS\",\"https:\/\/x.com\/LinuxCloudVPS\",\"http:\/\/www.linkedin.com\/company\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/www.linuxcloudvps.com\/\"],\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install ownCloud 9 with Nginx and PHP-FPM on an Ubuntu 16.04 Cloud | LinuxCloudVPS Blog","description":"ownCloud is an enterprise file sharing solution for online collaboration and storage that you can use to sync and share your files, calendar, contacts and","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:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/","og_locale":"en_US","og_type":"article","og_title":"Install ownCloud 9 with Nginx and PHP-FPM on an Ubuntu 16.04 Cloud | LinuxCloudVPS Blog","og_description":"ownCloud is an enterprise file sharing solution for online collaboration and storage that you can use to sync and share your files, calendar, contacts and","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2016-09-30T12:42:30+00:00","article_modified_time":"2018-01-31T14:56:43+00:00","og_image":[{"width":300,"height":213,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/09\/owncloud-ubuntu.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"Install ownCloud 9 with Nginx and PHP-FPM on an Ubuntu 16.04 Cloud","datePublished":"2016-09-30T12:42:30+00:00","dateModified":"2018-01-31T14:56:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/"},"wordCount":482,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/09\/owncloud-ubuntu.jpg","keywords":["linuxcloudvps","owncloud","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/","name":"Install ownCloud 9 with Nginx and PHP-FPM on an Ubuntu 16.04 Cloud | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/09\/owncloud-ubuntu.jpg","datePublished":"2016-09-30T12:42:30+00:00","dateModified":"2018-01-31T14:56:43+00:00","description":"ownCloud is an enterprise file sharing solution for online collaboration and storage that you can use to sync and share your files, calendar, contacts and","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/09\/owncloud-ubuntu.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/09\/owncloud-ubuntu.jpg","width":300,"height":213,"caption":"owncloud on ubuntu"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-owncloud-9-with-nginx-and-php-fpm-on-an-ubuntu-16-04-cloud\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install ownCloud 9 with Nginx and PHP-FPM on an Ubuntu 16.04 Cloud"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/402","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=402"}],"version-history":[{"count":4,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/402\/revisions"}],"predecessor-version":[{"id":408,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/402\/revisions\/408"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/404"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=402"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=402"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=402"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}