{"id":3015,"date":"2013-12-28T14:54:13","date_gmt":"2013-12-28T20:54:13","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=3015"},"modified":"2022-06-03T03:47:11","modified_gmt":"2022-06-03T08:47:11","slug":"install-selfoss-on-debian-wheezy","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/","title":{"rendered":"Install Selfoss on Debian Wheezy"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft  wp-image-3016\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/12\/logo.png\" alt=\"logo\" width=\"136\" height=\"161\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>In this article we will show you how to install Selfoss on a <a title=\"Debian VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/debian-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Debian Wheezy VPS<\/a> with PHP-FPM, Nginx and MySQL. Selfoss is a new multipurpose rss reader, live stream, mashup and aggregation web application. It is written in PHP and uses either SQLite, MySQL or PostgreSQL as a database. Selfoss is a project of Tobias Zeising and is licensed under GPL v3.<\/p>\n<p><!--more--><\/p>\n<p><strong>Install MySQL and create a database.<\/strong><\/p>\n<pre>apt-get update\r\napt-get upgrade\r\napt-get install mysql-server mysql-client<\/pre>\n<pre>mysql -uroot -p\r\nCREATE DATABASE selfoss\r\nGRANT ALL PRIVILEGES ON selfoss.* TO 'selfoss'@'localhost' IDENTIFIED BY '_PASSWORD_';\r\nFLUSH PRIVILEGES;\r\n\/q<\/pre>\n<p><strong>Install Nginx and PHP-FPM<\/strong><\/p>\n<pre>apt-get install nginx php5-fpm php-cli php5-mysql php5-gd php5-mcrypt<\/pre>\n<p>Create a root directory for your web site<\/p>\n<pre>mkdir -p \/var\/www\/yourwebsite.com\/{public_html,logs}<\/pre>\n<p><strong>Download and configure selfoss<\/strong><\/p>\n<pre>wget http:\/\/selfoss.aditu.de\/selfoss-2.9.zip -O \/tmp\/selfoss.zip\r\nunzip -d \/var\/www\/yourwebsite.com\/public_html \/tmp\/selfoss.zip<\/pre>\n<p>Copy defaults.ini to config.ini<\/p>\n<pre>cp \/var\/www\/yourwebsite.com\/public_html\/defaults.ini \/var\/www\/yourwebsite.com\/public_html\/config.ini<\/pre>\n<p>Open the config.ini file and change the following<\/p>\n<pre>vim \/var\/www\/yourwebsite.com\/public_html\/config.ini<\/pre>\n<pre>db_type=mysql\r\ndb_database=selfoss\r\ndb_username=selfoss\r\ndb_password=_PASSWORD_\r\ndb_port=3306<\/pre>\n<p>Change permissions.<\/p>\n<pre>chown -R www-data: \/var\/www\/yourwebsite.com\/public_html\/<\/pre>\n<p><strong>Nginx configuration.<\/strong><\/p>\n<p>Create a new Nginx server block with the following content<\/p>\n<pre># \/etc\/nginx\/sites-available\/yourwebsite.com\r\n# https:\/\/github.com\/SSilence\/selfoss\/wiki\/nginx-configuration\r\nupstream backend {\r\n   server unix:\/var\/run\/php5-fpm.sock;\r\n}\r\nserver {\r\n    listen 80;\r\n    server_name yourwebsite.com;\r\n    root \/var\/www\/yourwebsite.com\/public_html\/;\r\n    access_log \/var\/www\/yourwebsite.com\/logs\/access.log;\r\n    error_log \/var\/www\/yourwebsite.com\/logs\/error.log;\r\n    location ~* \\ (gif|jpg|png) {\r\n      expires 30d;\r\n    }\r\n    location ~ ^\/favicons\/.*$ {\r\n        try_files $uri \/data\/$uri;\r\n    }\r\n    location ~ ^\/thumbnails\/.*$ {\r\n        try_files $uri \/data\/$uri;\r\n    }\r\n    location ~* ^\/(data\\\/logs|data\\\/sqlite|config\\.ini|\\.ht) {\r\n        deny all;\r\n    }\r\n    location \/ {\r\n      index index.php index.html index.htm;\r\n      try_files $uri \/public\/$uri \/index.php$is_args$args;\r\n    }\r\n    location ~ \\.php$ {\r\n      fastcgi_pass backend;\r\n      fastcgi_index index.php;\r\n      fastcgi_param SCRIPT_FILENAME $document_root\/$fastcgi_script_name;\r\n      include fastcgi_params;\r\n    }\r\n}<\/pre>\n<p>Symlink it and restart the server<\/p>\n<pre>ln -s \/etc\/nginx\/sites-available\/yourwebsite.com \/etc\/nginx\/sites-enabled\/yourwebsite.com\r\n\/etc\/init.d\/nginx restart<\/pre>\n<p>The feeds can be updated manually or via a cron job. To set a cron job run the following command:<\/p>\n<pre>sudo echo \"*\/10 * * * * root wget -o \/dev\/null http:\/\/yourwebsite.com\/update\" &gt;&gt; \/etc\/cron.d\/selfoss<\/pre>\n<p>You can find more info about Selfoss on their official website \u2014 http:\/\/selfoss.aditu.de\/<\/p>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a> services, in which case you can simply ask our expert linux admins to install this 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>&nbsp; In this article we will show you how to install Selfoss on a Debian Wheezy VPS with PHP-FPM, Nginx &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install Selfoss on Debian Wheezy\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/#more-3015\" aria-label=\"Read more about Install Selfoss on Debian Wheezy\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":3016,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1700,13],"tags":[368,369,177,1152,367,366],"class_list":["post-3015","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","category-tutorials","tag-feed","tag-install-selfoss","tag-linux-vps","tag-rosehosting","tag-rss","tag-selfoss","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install Selfoss on Debian Wheezy | RoseHosting<\/title>\n<meta name=\"description\" content=\"Install Selfoss on Debian Wheezy | RoseHosting\" \/>\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.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Selfoss on Debian Wheezy\" \/>\n<meta property=\"og:description\" content=\"Install Selfoss on Debian Wheezy | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2013-12-28T20:54:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:47:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/12\/logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"177\" \/>\n\t<meta property=\"og:image:height\" content=\"209\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\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.rosehosting.com\\\/blog\\\/install-selfoss-on-debian-wheezy\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-selfoss-on-debian-wheezy\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install Selfoss on Debian Wheezy\",\"datePublished\":\"2013-12-28T20:54:13+00:00\",\"dateModified\":\"2022-06-03T08:47:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-selfoss-on-debian-wheezy\\\/\"},\"wordCount\":238,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-selfoss-on-debian-wheezy\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/12\\\/logo.png\",\"keywords\":[\"feed\",\"install selfoss\",\"linux vps\",\"rosehosting\",\"rss\",\"selfoss\"],\"articleSection\":[\"Debian\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-selfoss-on-debian-wheezy\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-selfoss-on-debian-wheezy\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-selfoss-on-debian-wheezy\\\/\",\"name\":\"Install Selfoss on Debian Wheezy | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-selfoss-on-debian-wheezy\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-selfoss-on-debian-wheezy\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/12\\\/logo.png\",\"datePublished\":\"2013-12-28T20:54:13+00:00\",\"dateModified\":\"2022-06-03T08:47:11+00:00\",\"description\":\"Install Selfoss on Debian Wheezy | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-selfoss-on-debian-wheezy\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-selfoss-on-debian-wheezy\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-selfoss-on-debian-wheezy\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/12\\\/logo.png\",\"width\":177,\"height\":209},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-selfoss-on-debian-wheezy\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Selfoss on Debian Wheezy\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install Selfoss on Debian Wheezy | RoseHosting","description":"Install Selfoss on Debian Wheezy | RoseHosting","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.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/","og_locale":"en_US","og_type":"article","og_title":"Install Selfoss on Debian Wheezy","og_description":"Install Selfoss on Debian Wheezy | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2013-12-28T20:54:13+00:00","article_modified_time":"2022-06-03T08:47:11+00:00","og_image":[{"width":177,"height":209,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/12\/logo.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install Selfoss on Debian Wheezy","datePublished":"2013-12-28T20:54:13+00:00","dateModified":"2022-06-03T08:47:11+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/"},"wordCount":238,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/12\/logo.png","keywords":["feed","install selfoss","linux vps","rosehosting","rss","selfoss"],"articleSection":["Debian","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/","url":"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/","name":"Install Selfoss on Debian Wheezy | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/12\/logo.png","datePublished":"2013-12-28T20:54:13+00:00","dateModified":"2022-06-03T08:47:11+00:00","description":"Install Selfoss on Debian Wheezy | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/12\/logo.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/12\/logo.png","width":177,"height":209},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-selfoss-on-debian-wheezy\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Selfoss on Debian Wheezy"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3015","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=3015"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3015\/revisions"}],"predecessor-version":[{"id":42259,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/3015\/revisions\/42259"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/3016"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=3015"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=3015"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=3015"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}