{"id":4728,"date":"2023-08-02T09:31:53","date_gmt":"2023-08-02T08:31:53","guid":{"rendered":"https:\/\/www.utilewebsites.nl\/knowledgebase\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\/"},"modified":"2023-08-02T09:54:37","modified_gmt":"2023-08-02T08:54:37","slug":"complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide","status":"publish","type":"wz_knowledgebase","link":"https:\/\/www.utilewebsites.nl\/en\/knowledgebase\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\/","title":{"rendered":"Complete Guide to Installing a Django Application on Debian 10 with Apache and WSGI: Step-by-Step Guide"},"content":{"rendered":"\n<p>Installing a Django application on a Debian 10 server is a hot topic for both experienced developers and beginners finding their way in the world of web development. This complete guide provides step-by-step instructions for installing a Django application on Debian 10 using Apache and WSGI.<\/p>\n\n\n\n<p>Django is one of the most popular web frameworks for building modern, scalable web applications. Debian 10, known for its stability and security, offers a solid foundation for hosting. When combined with Apache, one of the most widely-used web servers, and WSGI to bridge the gap between Python applications and web servers, you get a robust and reliable stack for your web projects.<\/p>\n\n\n\n<p>Whether you are an experienced Django developer seeking a reliable way to host your application or a beginner just starting with Django and in search of a clear and concise guide, this tutorial will walk you through the entire process.<\/p>\n\n\n\n<p>Read on for detailed instructions, including the configuration of virtual hosts, directory permissions, and more. Learn how to install and configure your Django application on a Debian 10 system running Apache and WSGI, and get your project online today!<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\"><\/h1>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Preparation of the system<\/h3>\n\n\n\n<p>Make sure your Debian 10 system is up to date:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update\nsudo apt upgrade<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Installation of Apache and required modules<\/h3>\n\n\n\n<p>Install Apache and the mod_wsgi module:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install apache2\nsudo apt install libapache2-mod-wsgi-py3\nsudo a2enmod wsgi<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Installation of Python 3.7<\/h3>\n\n\n\n<p>Check your current Python version:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>python3 --version<\/code><\/pre>\n\n\n\n<p>If necessary, install Python 3.7:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install python3.7<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Creating and setting up a virtual environment<\/h3>\n\n\n\n<p>Install and create packages for a virtual environment:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install python3-venv\npython3 -m venv \/var\/www\/djangoapplicatie.nl\/web\/srv\/webapps\/pythoneditortool\/myenv<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Installation of Django<\/h3>\n\n\n\n<p>Activate the virtual environment and install Django:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>source \/var\/www\/djangoapplicatie.nl\/web\/srv\/webapps\/pythoneditortool\/myenv\/bin\/activate\npip3 install django<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Virtual Host Configuration (vhost).<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">1. Directory Permissions.<\/h4>\n\n\n\n<p>Configure access rights:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;Directory \/var\/www\/djangoapplicatie.nl&gt;\n &lt;IfVersion &lt; 2.3 &gt;\n   Order allow,deny\n   Allow from all\n &lt;\/IfVersion&gt;\n &lt;IfVersion &gt;= 2.3&gt;\n   Require all granted\n &lt;\/IfVersion&gt;\n&lt;\/Directory&gt;<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">2. Virtual Host Block<\/h4>\n\n\n\n<p>Define the beginning of the configuration block:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;VirtualHost *:80&gt;\n...\n&lt;\/VirtualHost&gt;<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">3. DocumentRoot, ServerName, and ServerAlias.<\/h4>\n\n\n\n<p>Set paths, domain name, and aliases:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>DocumentRoot \/var\/www\/djangoapplicatie.nl\/web\/srv\/webapps\/pythoneditortool\/src\nServerName djangoapplicatie.nl\nServerAlias www.djangoapplicatie.nl<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">4. ErrorLog and CustomLog<\/h4>\n\n\n\n<p>Define log locations:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ErrorLog ${APACHE_LOG_DIR}\/djangoapplicatie.nl.error.log\nCustomLog ${APACHE_LOG_DIR}\/djangoapplicatie.nl.access.log combined<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">5. Static and Media Aliases<\/h4>\n\n\n\n<p>Make static and media files accessible.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">6. WSGI Configuration<\/h4>\n\n\n\n<p>Connect the Django application to Apache via WSGI:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>WSGIDaemonProcess pythoneditortool python-path=\/var\/www\/djangoapplicatie.nl\/web\/srv\/webapps\/pythoneditortool\/src python-home=\/var\/www\/djangoapplicatie.nl\/web\/srv\/webapps\/pythoneditortool\/myenv\nWSGIProcessGroup pythoneditortool\nWSGIScriptAlias \/ \/var\/www\/djangoapplicatie.nl\/web\/srv\/webapps\/pythoneditortool\/src\/wsgi.py<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">7. PHP-FPM and Suexec Configuration.<\/h4>\n\n\n\n<p>Configure PHP scripts and user rights.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">8. DAV Configuration<\/h4>\n\n\n\n<p>Set up WebDAV.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Save file and restart Apache<\/h3>\n\n\n\n<p>Save, enable, and restart Apache:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo a2ensite djangoapplicatie.nl.conf\nsudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<p><strong>Example entire vhost file<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;VirtualHost *:80>\n    ServerAdmin webmaster@djangoapplicatie.nl\n    DocumentRoot \/var\/www\/djangoapplicatie.nl\/web\/srv\/webapps\/pythoneditortool\/src\n    ServerName djangoapplicatie.nl\n    ServerAlias www.djangoapplicatie.nl\n\n    &lt;Directory \/var\/www\/djangoapplicatie.nl>\n        &lt;IfVersion &lt; 2.3 >\n            Order allow,deny\n            Allow from all\n        &lt;\/IfVersion>\n        &lt;IfVersion >= 2.3>\n            Require all granted\n        &lt;\/IfVersion>\n    &lt;\/Directory>\n\n    Alias \/static\/ \/var\/www\/djangoapplicatie.nl\/static\/\n    Alias \/media\/ \/var\/www\/djangoapplicatie.nl\/media\/\n\n    &lt;Directory \/var\/www\/djangoapplicatie.nl\/static>\n        Require all granted\n    &lt;\/Directory>\n\n    &lt;Directory \/var\/www\/djangoapplicatie.nl\/media>\n        Require all granted\n    &lt;\/Directory>\n\n    ErrorLog ${APACHE_LOG_DIR}\/djangoapplicatie.nl.error.log\n    CustomLog ${APACHE_LOG_DIR}\/djangoapplicatie.nl.access.log combined\n\n    WSGIDaemonProcess pythoneditortool python-path=\/var\/www\/djangoapplicatie.nl\/web\/srv\/webapps\/pythoneditortool\/src python-home=\/var\/www\/djangoapplicatie.nl\/web\/srv\/webapps\/pythoneditortool\/myenv\n    WSGIProcessGroup pythoneditortool\n    WSGIScriptAlias \/ \/var\/www\/djangoapplicatie.nl\/web\/srv\/webapps\/pythoneditortool\/src\/wsgi.py\n\n    # Suexec en PHP-FPM (if needed)\n    # ...\n\n    # DAV Configuration (if needed)\n    # ...\n&lt;\/VirtualHost>\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7: Check your installation<\/h3>\n\n\n\n<p>Open your domain to check that everything is working.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>Setting up a Django application with Apache on Debian 10 requires a few steps, including installing Apache, Python, and the necessary modules, setting up a virtual environment, and configuring a virtual host in Apache. Your configuration file serves as an excellent example of the proper settings. If everything is configured correctly, your Django application should now be reachable through your domain.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Learn more: Setting Up Django Application From Scratch<\/h3>\n\n\n\n<p>If you are just starting out with Django and want to build an application from scratch, you can benefit from the extensive and detailed documentation provided by the Django project itself.<\/p>\n\n\n\n<p>The <a href=\"https:\/\/docs.djangoproject.com\/en\/stable\/intro\/tutorial01\/\">official<\/a><a href=\"https:\/\/docs.djangoproject.com\/en\/stable\/intro\/tutorial01\/\">Django<\/a> <a href=\"https:\/\/docs.djangoproject.com\/en\/stable\/intro\/tutorial01\/\">documentation<\/a> provides a tutorial series that guides you in creating a Django application from scratch. From installing Django to defining models, creating views and customizing templates, these tutorials provide detailed explanations and code examples to help you successfully build your first Django application.<\/p>\n\n\n\n<p>Suitable for developers of all levels, the tutorial is an excellent resource to familiarize you with key concepts and practices within Django. Whether you are a complete beginner or want to refresh your knowledge, the manual provides practical instructions and best practices straight from the experts behind Django itself.<\/p>\n\n\n\n<p class=\"has-vivid-cyan-blue-color has-text-color\"><a href=\"https:\/\/docs.djangoproject.com\/en\/stable\/intro\/tutorial01\/\" target=\"_blank\" rel=\"noreferrer noopener\">Get started now with the official Django Tutorial<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Installing a Django application on a Debian 10 server is a hot topic for both experienced developers and beginners finding their way in the world of web development. This complete guide provides step-by-step instructions for installing a Django application on Debian 10 using Apache and WSGI. Django is one of the most popular web frameworks for building modern, scalable web applications. Debian 10, known for its stability and security, offers a solid foundation for hosting. When combined with Apache, one of the most widely-used web servers, and WSGI to bridge the gap between Python applications and web servers, you get&nbsp;<a href=\"https:\/\/www.utilewebsites.nl\/en\/knowledgebase\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\/\" class=\"read-more\">Continue Reading<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"wzkb_category":[95],"wzkb_tag":[],"class_list":["post-4728","wz_knowledgebase","type-wz_knowledgebase","status-publish","hentry","wzkb_category-django"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Complete Guide to Installing a Django Application on Debian 10 with Apache and WSGI: Step-by-Step Guide - Utilewebsites<\/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.utilewebsites.nl\/en\/knowledgebase\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Complete Guide to Installing a Django Application on Debian 10 with Apache and WSGI: Step-by-Step Guide - Utilewebsites\" \/>\n<meta property=\"og:description\" content=\"Installing a Django application on a Debian 10 server is a hot topic for both experienced developers and beginners finding their way in the world of web development. This complete guide provides step-by-step instructions for installing a Django application on Debian 10 using Apache and WSGI. Django is one of the most popular web frameworks for building modern, scalable web applications. Debian 10, known for its stability and security, offers a solid foundation for hosting. When combined with Apache, one of the most widely-used web servers, and WSGI to bridge the gap between Python applications and web servers, you get&nbsp;Continue Reading\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.utilewebsites.nl\/en\/knowledgebase\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Utilewebsites\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-02T08:54:37+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/knowledgebase\\\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\\\/\",\"url\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/knowledgebase\\\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\\\/\",\"name\":\"Complete Guide to Installing a Django Application on Debian 10 with Apache and WSGI: Step-by-Step Guide - Utilewebsites\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/#website\"},\"datePublished\":\"2023-08-02T08:31:53+00:00\",\"dateModified\":\"2023-08-02T08:54:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/knowledgebase\\\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/knowledgebase\\\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/knowledgebase\\\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Knowledge Base\",\"item\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/knowledgebase\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Complete Guide to Installing a Django Application on Debian 10 with Apache and WSGI: Step-by-Step Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/\",\"name\":\"Utilewebsites\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/#organization\",\"name\":\"Utilewebsites\",\"url\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.utilewebsites.nl\\\/wp-content\\\/uploads\\\/2019\\\/08\\\/logo-Utilewebsites-2017.png\",\"contentUrl\":\"https:\\\/\\\/www.utilewebsites.nl\\\/wp-content\\\/uploads\\\/2019\\\/08\\\/logo-Utilewebsites-2017.png\",\"width\":3000,\"height\":593,\"caption\":\"Utilewebsites\"},\"image\":{\"@id\":\"https:\\\/\\\/www.utilewebsites.nl\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Complete Guide to Installing a Django Application on Debian 10 with Apache and WSGI: Step-by-Step Guide - Utilewebsites","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.utilewebsites.nl\/en\/knowledgebase\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\/","og_locale":"en_US","og_type":"article","og_title":"Complete Guide to Installing a Django Application on Debian 10 with Apache and WSGI: Step-by-Step Guide - Utilewebsites","og_description":"Installing a Django application on a Debian 10 server is a hot topic for both experienced developers and beginners finding their way in the world of web development. This complete guide provides step-by-step instructions for installing a Django application on Debian 10 using Apache and WSGI. Django is one of the most popular web frameworks for building modern, scalable web applications. Debian 10, known for its stability and security, offers a solid foundation for hosting. When combined with Apache, one of the most widely-used web servers, and WSGI to bridge the gap between Python applications and web servers, you get&nbsp;Continue Reading","og_url":"https:\/\/www.utilewebsites.nl\/en\/knowledgebase\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\/","og_site_name":"Utilewebsites","article_modified_time":"2023-08-02T08:54:37+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.utilewebsites.nl\/en\/knowledgebase\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\/","url":"https:\/\/www.utilewebsites.nl\/en\/knowledgebase\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\/","name":"Complete Guide to Installing a Django Application on Debian 10 with Apache and WSGI: Step-by-Step Guide - Utilewebsites","isPartOf":{"@id":"https:\/\/www.utilewebsites.nl\/en\/#website"},"datePublished":"2023-08-02T08:31:53+00:00","dateModified":"2023-08-02T08:54:37+00:00","breadcrumb":{"@id":"https:\/\/www.utilewebsites.nl\/en\/knowledgebase\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.utilewebsites.nl\/en\/knowledgebase\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.utilewebsites.nl\/en\/knowledgebase\/complete-guide-to-installing-a-django-application-on-debian-10-with-apache-and-wsgi-step-by-step-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.utilewebsites.nl\/en\/"},{"@type":"ListItem","position":2,"name":"Knowledge Base","item":"https:\/\/www.utilewebsites.nl\/en\/knowledgebase\/"},{"@type":"ListItem","position":3,"name":"Complete Guide to Installing a Django Application on Debian 10 with Apache and WSGI: Step-by-Step Guide"}]},{"@type":"WebSite","@id":"https:\/\/www.utilewebsites.nl\/en\/#website","url":"https:\/\/www.utilewebsites.nl\/en\/","name":"Utilewebsites","description":"","publisher":{"@id":"https:\/\/www.utilewebsites.nl\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.utilewebsites.nl\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.utilewebsites.nl\/en\/#organization","name":"Utilewebsites","url":"https:\/\/www.utilewebsites.nl\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.utilewebsites.nl\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.utilewebsites.nl\/wp-content\/uploads\/2019\/08\/logo-Utilewebsites-2017.png","contentUrl":"https:\/\/www.utilewebsites.nl\/wp-content\/uploads\/2019\/08\/logo-Utilewebsites-2017.png","width":3000,"height":593,"caption":"Utilewebsites"},"image":{"@id":"https:\/\/www.utilewebsites.nl\/en\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.utilewebsites.nl\/en\/wp-json\/wp\/v2\/wz_knowledgebase\/4728","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.utilewebsites.nl\/en\/wp-json\/wp\/v2\/wz_knowledgebase"}],"about":[{"href":"https:\/\/www.utilewebsites.nl\/en\/wp-json\/wp\/v2\/types\/wz_knowledgebase"}],"author":[{"embeddable":true,"href":"https:\/\/www.utilewebsites.nl\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.utilewebsites.nl\/en\/wp-json\/wp\/v2\/comments?post=4728"}],"version-history":[{"count":5,"href":"https:\/\/www.utilewebsites.nl\/en\/wp-json\/wp\/v2\/wz_knowledgebase\/4728\/revisions"}],"predecessor-version":[{"id":4734,"href":"https:\/\/www.utilewebsites.nl\/en\/wp-json\/wp\/v2\/wz_knowledgebase\/4728\/revisions\/4734"}],"wp:attachment":[{"href":"https:\/\/www.utilewebsites.nl\/en\/wp-json\/wp\/v2\/media?parent=4728"}],"wp:term":[{"taxonomy":"wzkb_category","embeddable":true,"href":"https:\/\/www.utilewebsites.nl\/en\/wp-json\/wp\/v2\/wzkb_category?post=4728"},{"taxonomy":"wzkb_tag","embeddable":true,"href":"https:\/\/www.utilewebsites.nl\/en\/wp-json\/wp\/v2\/wzkb_tag?post=4728"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}