{"id":13833,"date":"2025-12-31T18:31:54","date_gmt":"2025-12-31T16:31:54","guid":{"rendered":"https:\/\/www.ioweb.gr\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/"},"modified":"2025-12-31T18:31:55","modified_gmt":"2025-12-31T16:31:55","slug":"add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11","status":"publish","type":"post","link":"https:\/\/www.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/","title":{"rendered":"ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"13833\" class=\"elementor elementor-13833 elementor-2443\" data-elementor-post-type=\"post\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3183c8f e-flex e-con-boxed e-con e-parent\" data-id=\"3183c8f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7ed762c elementor-widget elementor-widget-spacer\" data-id=\"7ed762c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0681ccf elementor-widget elementor-widget-heading\" data-id=\"0681ccf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1a5f2d0 elementor-widget elementor-widget-text-editor\" data-id=\"1a5f2d0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<div id=\"text_block-10-1156\" class=\"ct-text-block\">A truly common problem that affects users in their hosting environments is the lack of popular commands within a chroot environment.<\/div><div id=\"text_block-58-1459\" class=\"ct-text-block\">Since you do not want your users to have root access to your server but still want them to be able to execute shell commands, it makes sense to set up a chroot jail. With this setup, you secure your server from the user, as they cannot damage any directory tree other than the one assigned to them. It should be noted, however, that it is possible to escape a chroot jail, but it still provides more than adequate protection against accidental damage. Therefore, you should use it when you trust your users.<\/div><div> <\/div><div id=\"text_block-59-1459\" class=\"ct-text-block\">After setting up Plesk and enabling chroot for a subscriber, you will quickly notice that many programs such as Git are not available. This is mainly due to the fact that many programs require access to devices and services that are generally not available, as they fall outside the scope of the chroot environment. Adding them is not that difficult.<\/div><div> <\/div><div id=\"text_block-61-1459\" class=\"ct-text-block\">For example, common requests include ssh, tty, urandom, and so on. To make this easier, Plesk created a tool called update_chroot.sh, which you can download from here. With the following commands, you can add the above components.<\/div><div id=\"text_block-62-1459\" class=\"ct-text-block\">Download the tool to \/home as root and then run:<\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a717e1d elementor-widget elementor-widget-code-highlight\" data-id=\"a717e1d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"code-highlight.default\">\n\t\t\t\t\t\t\t<div class=\"prismjs-default copy-to-clipboard \">\n\t\t\t<pre data-line=\"\" class=\"highlight-height language-bash line-numbers\">\n\t\t\t\t<code readonly=\"true\" class=\"language-bash\">\n\t\t\t\t\t<xmp> \r\n~\/update_chroot.sh --add ssh\r\n~\/update_chroot.sh --devices tty\r\n~\/update_chroot.sh --devices \/dev\/urandom\r\n <\/xmp>\n\t\t\t\t<\/code>\n\t\t\t<\/pre>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-48a39f6 elementor-widget elementor-widget-text-editor\" data-id=\"48a39f6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<div id=\"text_block-66-1459\" class=\"ct-text-block\">In this article, we focus on Git. The following commands allow us to add it:<\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f3698f2 elementor-widget elementor-widget-code-highlight\" data-id=\"f3698f2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"code-highlight.default\">\n\t\t\t\t\t\t\t<div class=\"prismjs-default copy-to-clipboard \">\n\t\t\t<pre data-line=\"\" class=\"highlight-height language-bash line-numbers\">\n\t\t\t\t<code readonly=\"true\" class=\"language-bash\">\n\t\t\t\t\t<xmp>mkdir -p \/var\/www\/vhosts\/chroot\/usr\/share\/git-core\/templates\r\ncp -raL \/usr\/share\/git-core\/templates\/ \/var\/www\/vhosts\/chroot\/usr\r\n\/share\/git-core\/templates\r\n~\/update_chroot.sh --add \/usr\/bin\/tr\r\n~\/update_chroot.sh --add \/usr\/bin\/git\r\n~\/update_chroot.sh --add \/usr\/bin\/dirname \/usr\/bin\/wc \/usr\/bin\/perl\r\n \/usr\/bin\/tput \/usr\/bin\/basename\r\n~\/update_chroot.sh --add \/usr\/bin\/git*\r\n~\/update_chroot.sh --add \/usr\/lib\/git-core\/*\r\ncp -raL \/usr\/lib\/git-core\/* \/var\/www\/vhosts\/chroot\/usr\/lib\/git-core\/<\/xmp>\n\t\t\t\t<\/code>\n\t\t\t<\/pre>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3f3e518 elementor-widget elementor-widget-text-editor\" data-id=\"3f3e518\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<div id=\"text_block-71-1459\" class=\"ct-text-block\">After adding all the required tools, you will need to update the chroot environment. For example:<\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-709ddd1 elementor-widget elementor-widget-code-highlight\" data-id=\"709ddd1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"code-highlight.default\">\n\t\t\t\t\t\t\t<div class=\"prismjs-default copy-to-clipboard \">\n\t\t\t<pre data-line=\"\" class=\"highlight-height language-bash line-numbers\">\n\t\t\t\t<code readonly=\"true\" class=\"language-bash\">\n\t\t\t\t\t<xmp>~\/update_chroot.sh --apply ioweb.gr<\/xmp>\n\t\t\t\t<\/code>\n\t\t\t<\/pre>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b40a116 elementor-widget elementor-widget-text-editor\" data-id=\"b40a116\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<div id=\"text_block-77-1459\" class=\"ct-text-block\">If you cannot find one of the commands, try using &#8216;which <command><\/command>&#8216;, for example &#8216;which tr&#8217; or &#8216;which basename&#8217;.<\/command><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11 A truly common problem that affects users in their hosting environments is the lack of popular commands within a chroot environment.Since you do not want your users to have root access to your server but still want them to be able to execute shell [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[54,55,56,57,59,60,58,61,63,62,64,65,66,68,67,69],"class_list":["post-13833","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-batch-resize-images","tag-chroot","tag-debian","tag-howto","tag-imagemagick","tag-ispconfig","tag-linux","tag-magento","tag-media-manger","tag-ngnix","tag-plesk","tag-powershell","tag-responsive-design","tag-thumbnail","tag-tutorials","tag-web-design"],"acf":{"title_override":"","subtitle":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11<\/title>\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.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11\" \/>\n<meta property=\"og:description\" content=\"ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11 A truly common problem that affects users in their hosting environments is the lack of popular commands within a chroot environment.Since you do not want your users to have root access to your server but still want them to be able to execute shell [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/\" \/>\n<meta property=\"og:site_name\" content=\"IOWEB \u039a\u03b1\u03c4\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u03b9\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03c9\u03bd, eshop, \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2 Web\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-31T16:31:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-31T16:31:55+00:00\" \/>\n<meta name=\"author\" content=\"ioweb\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ioweb\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\\\/\"},\"author\":{\"name\":\"ioweb\",\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/#\\\/schema\\\/person\\\/11b79dbf0e157c68a134931dc9ecbf55\"},\"headline\":\"ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11\",\"datePublished\":\"2025-12-31T16:31:54+00:00\",\"dateModified\":\"2025-12-31T16:31:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\\\/\"},\"wordCount\":290,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/#organization\"},\"keywords\":[\"Batch resize images\",\"chroot\",\"Debian\",\"Howto\",\"ImageMagick\",\"ispconfig\",\"Linux\",\"Magento\",\"Media Manger\",\"Ngnix\",\"Plesk\",\"Powershell\",\"Responsive Design\",\"Thumbnail\",\"Tutorials\",\"Web Design\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\\\/\",\"url\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\\\/\",\"name\":\"ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/#website\"},\"datePublished\":\"2025-12-31T16:31:54+00:00\",\"dateModified\":\"2025-12-31T16:31:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/\",\"name\":\"IOWEB \u039a\u03b1\u03c4\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u03b9\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03c9\u03bd, eshop, \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2 Web\",\"description\":\"Just another WordPress site\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/#organization\",\"name\":\"IOWEB TECHNOLOGIES\",\"url\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.ioweb.gr\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/ioweb-logo.svg\",\"contentUrl\":\"https:\\\/\\\/www.ioweb.gr\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/ioweb-logo.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"IOWEB TECHNOLOGIES\"},\"image\":{\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/#\\\/schema\\\/person\\\/11b79dbf0e157c68a134931dc9ecbf55\",\"name\":\"ioweb\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f73204298dc8973a5852ea2779243be0cee39f44cfe8e881d9c75e9e9025af35?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f73204298dc8973a5852ea2779243be0cee39f44cfe8e881d9c75e9e9025af35?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f73204298dc8973a5852ea2779243be0cee39f44cfe8e881d9c75e9e9025af35?s=96&d=mm&r=g\",\"caption\":\"ioweb\"},\"url\":\"https:\\\/\\\/www.ioweb.gr\\\/en\\\/author\\\/ioweb\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11","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.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/","og_locale":"en_US","og_type":"article","og_title":"ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11","og_description":"ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11 A truly common problem that affects users in their hosting environments is the lack of popular commands within a chroot environment.Since you do not want your users to have root access to your server but still want them to be able to execute shell [&hellip;]","og_url":"https:\/\/www.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/","og_site_name":"IOWEB \u039a\u03b1\u03c4\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u03b9\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03c9\u03bd, eshop, \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2 Web","article_published_time":"2025-12-31T16:31:54+00:00","article_modified_time":"2025-12-31T16:31:55+00:00","author":"ioweb","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ioweb","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/#article","isPartOf":{"@id":"https:\/\/www.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/"},"author":{"name":"ioweb","@id":"https:\/\/www.ioweb.gr\/en\/#\/schema\/person\/11b79dbf0e157c68a134931dc9ecbf55"},"headline":"ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11","datePublished":"2025-12-31T16:31:54+00:00","dateModified":"2025-12-31T16:31:55+00:00","mainEntityOfPage":{"@id":"https:\/\/www.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/"},"wordCount":290,"commentCount":0,"publisher":{"@id":"https:\/\/www.ioweb.gr\/en\/#organization"},"keywords":["Batch resize images","chroot","Debian","Howto","ImageMagick","ispconfig","Linux","Magento","Media Manger","Ngnix","Plesk","Powershell","Responsive Design","Thumbnail","Tutorials","Web Design"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/","url":"https:\/\/www.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/","name":"ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11","isPartOf":{"@id":"https:\/\/www.ioweb.gr\/en\/#website"},"datePublished":"2025-12-31T16:31:54+00:00","dateModified":"2025-12-31T16:31:55+00:00","breadcrumb":{"@id":"https:\/\/www.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.ioweb.gr\/en\/add-git-to-plesk-onyx-17-8-11-chroot-on-debian-jessie-8-11\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.ioweb.gr\/en\/home\/"},{"@type":"ListItem","position":2,"name":"ADD GIT TO PLESK ONYX 17.8.11 CHROOT ON DEBIAN JESSIE 8.11"}]},{"@type":"WebSite","@id":"https:\/\/www.ioweb.gr\/en\/#website","url":"https:\/\/www.ioweb.gr\/en\/","name":"IOWEB \u039a\u03b1\u03c4\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u03b9\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03c9\u03bd, eshop, \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2 Web","description":"Just another WordPress site","publisher":{"@id":"https:\/\/www.ioweb.gr\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ioweb.gr\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.ioweb.gr\/en\/#organization","name":"IOWEB TECHNOLOGIES","url":"https:\/\/www.ioweb.gr\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ioweb.gr\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.ioweb.gr\/wp-content\/uploads\/2022\/04\/ioweb-logo.svg","contentUrl":"https:\/\/www.ioweb.gr\/wp-content\/uploads\/2022\/04\/ioweb-logo.svg","width":"1024","height":"1024","caption":"IOWEB TECHNOLOGIES"},"image":{"@id":"https:\/\/www.ioweb.gr\/en\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.ioweb.gr\/en\/#\/schema\/person\/11b79dbf0e157c68a134931dc9ecbf55","name":"ioweb","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f73204298dc8973a5852ea2779243be0cee39f44cfe8e881d9c75e9e9025af35?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f73204298dc8973a5852ea2779243be0cee39f44cfe8e881d9c75e9e9025af35?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f73204298dc8973a5852ea2779243be0cee39f44cfe8e881d9c75e9e9025af35?s=96&d=mm&r=g","caption":"ioweb"},"url":"https:\/\/www.ioweb.gr\/en\/author\/ioweb\/"}]}},"_links":{"self":[{"href":"https:\/\/www.ioweb.gr\/en\/wp-json\/wp\/v2\/posts\/13833","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ioweb.gr\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ioweb.gr\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ioweb.gr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ioweb.gr\/en\/wp-json\/wp\/v2\/comments?post=13833"}],"version-history":[{"count":1,"href":"https:\/\/www.ioweb.gr\/en\/wp-json\/wp\/v2\/posts\/13833\/revisions"}],"predecessor-version":[{"id":13834,"href":"https:\/\/www.ioweb.gr\/en\/wp-json\/wp\/v2\/posts\/13833\/revisions\/13834"}],"wp:attachment":[{"href":"https:\/\/www.ioweb.gr\/en\/wp-json\/wp\/v2\/media?parent=13833"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ioweb.gr\/en\/wp-json\/wp\/v2\/categories?post=13833"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ioweb.gr\/en\/wp-json\/wp\/v2\/tags?post=13833"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}