{"id":8678,"date":"2021-04-17T20:59:50","date_gmt":"2021-04-17T17:59:50","guid":{"rendered":"https:\/\/kifarunix.com\/?p=8678"},"modified":"2024-03-18T22:56:59","modified_gmt":"2024-03-18T19:56:59","slug":"install-nagios-core-on-freebsd-13","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/install-nagios-core-on-freebsd-13\/","title":{"rendered":"Install Nagios Core on FreeBSD 13"},"content":{"rendered":"\n<p>In this guide, we are going to learn how to install Nagios Core on FreeBSD 13.&nbsp;<a rel=\"noreferrer noopener\" href=\"https:\/\/www.nagios.org\/\" target=\"_blank\">Nagios<\/a>&nbsp;is an opensource tool that provides an enterprise-class central monitoring engine for IT monitoring, network monitoring, server and applications monitoring. It also provides a web interface for viewing current status, historical logs, and basic reports.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installing Nagios Core on FreeBSD 13<\/h2>\n\n\n\n<p><a aria-label=\"Nagios 4.4.6 (opens in a new tab)\" href=\"https:\/\/www.nagios.org\/projects\/nagios-core\/history\/4x\/\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Nagios Core 4.4.6<\/a> is the current stable release as of this writing. Fortunately, Nagios Core 4.4.6 is available on the default FreeBSD 13 repository catalogue.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Install Apache HTTP Server and PHP on FreeBSD<\/h4>\n\n\n\n<p>Install Apache and PHP on FreeBSD by running the command below;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>pkg install apache24 mod_php74 php74-gd<\/code><\/pre>\n\n\n\n<p>Once the installation is done, ensure Apache is able to server PHP content by ensuring <code><strong>index.php<\/strong><\/code> is part of your DirectoryIndex.<\/p>\n\n\n\n<p>sed i.bak &#8216;s\/DirectoryIndex index.html\/DirectoryIndex index.html index.php\/&#8217; \/usr\/local\/etc\/apache24\/httpd.conf<\/p>\n\n\n\n<p>Also, you should add the following to your Apache configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat &gt;&gt; \/usr\/local\/etc\/apache24\/httpd.conf &lt;&lt; 'EOL'\n&lt;FilesMatch \"\\.php$\"&gt;\n    SetHandler application\/x-httpd-php\n&lt;\/FilesMatch&gt;\n&lt;FilesMatch \"\\.phps$\"&gt;\n    SetHandler application\/x-httpd-php-source\n&lt;\/FilesMatch&gt;\n'EOL'<\/code><\/pre>\n\n\n\n<p>Save and exit the file.<\/p>\n\n\n\n<p>Ensure that Apache can server PHP by creating test file;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo \"&lt;? phpinfo(); ?&gt;\" &gt;&gt; \/usr\/local\/www\/apache24\/data\/test.php<\/code><\/pre>\n\n\n\n<p>You can then start Apache;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>service apache24 onestart<\/code><\/pre>\n\n\n\n<p>and navigate to the url <strong><code>http:\/\/server-host-name-or-ip\/test.php<\/code><\/strong>.<\/p>\n\n\n\n<p>You should see PHP page displayed.<\/p>\n\n\n\n<p>You also need to install Apache utils like <code><strong>htpasswd<\/strong><\/code> for creating users for basic authentication. This can be done via FreeBSD ports;<\/p>\n\n\n\n<p><a aria-label=\"Check how to install FreeBSD ports. (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/install-or-uninstall-software-on-freebsd-12-using-ports-collection\/\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Check how to install FreeBSD ports.<\/a><\/p>\n\n\n\n<p>Once the ports are installed, Install htpasswd on FreeBSD as follows;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>cd \/usr\/ports\/security\/p5-Apache-Htpasswd\/<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>make install clean<\/code><\/pre>\n\n\n\n<p>Run the command below to reload the $PATH after installation;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>rehash<\/code><\/pre>\n\n\n\n<p>To begin with, update and upgrade the local catalogues of the enabled package repositories.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>pkg update<\/code><\/pre>\n\n\n\n<pre id=\"block-56829bcf-df97-4f68-b57f-ba40a772d2ea\" class=\"wp-block-preformatted\">pkg upgrade<\/code><\/pre>\n\n\n\n<p>To verify the availability of the Nagios Core 4.x on FreeBSD;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>pkg search nagios4<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>cnagios-nagios4-0.33_1         Curses-based interface for nagios\nnagios4-4.4.6_1,1              Powerful network monitoring system<\/code><\/pre>\n\n\n\n<p>Thus, as you can see, we have the latest release version of Nagios Core available on the default FreeBSD catalogue.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Installing Nagios Core on FreeBSD 13<\/h3>\n\n\n\n<p>You can therefore install Nagios Core by running the command below;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>pkg install nagios4-4.4.6_1,1<\/code><\/pre>\n\n\n\n<p>Sample installation output;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Updating FreeBSD repository catalogue...\nFreeBSD repository is up to date.\nAll repositories are up to date.\nUpdating database digests format: 100%\nThe following 5 package(s) will be affected (of 0 checked):\n\nNew packages to be INSTALLED:\n\tlibltdl: 2.4.6\n\tnagios-plugins: 2.3.3_2,1\n\tnagios4: 4.4.6_1,1\n\tphp74-filter: 7.4.16\n\tphp74-xml: 7.4.16\n\nNumber of packages to be installed: 5\n\nThe process will require 10 MiB more space.\n2 MiB to be downloaded.\n\nProceed with this action? &#91;y\/N]: y<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Configure Nagios Core on FreeBSD 13<\/h3>\n\n\n\n<p>Once the installation is complete, proceed to configure Nagios Core on FreeBSD 13.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Enable Apache CGI Modules<\/h4>\n\n\n\n<p>Once the installation is done, open the Apache configuration file and enable the CGI modules.<\/p>\n\n\n\n<p>Locate the lines below remove the # on the lines beginning with LoadModule such that they look like;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>vi \/usr\/local\/etc\/apache24\/httpd.conf<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>...\n&lt;IfModule !mpm_prefork_module&gt;\n        LoadModule cgid_module libexec\/apache24\/mod_cgid.so\n&lt;\/IfModule&gt;\n&lt;IfModule mpm_prefork_module&gt;\n        LoadModule cgi_module libexec\/apache24\/mod_cgi.so\n&lt;\/IfModule&gt;\n...<\/code><\/pre>\n\n\n\n<p>Save and exit the file.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Create Apache Nagios Configuration file<\/h4>\n\n\n\n<p>Next, configure Apache to Server Nagios CGIs by creating a nagios.conf file that specify how Apache should server Nagios resources by running the command below;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat &gt;&gt; \/usr\/local\/etc\/apache24\/httpd.conf &lt;&lt; 'EOL'\n&lt;VirtualHost *:80&gt;\n   ServerName nagios.kifarunix-demo.com\n   DocumentRoot \"\/usr\/local\/www\/nagios\"\n\n   ScriptAlias \/nagios\/cgi-bin\/ \/usr\/local\/www\/nagios\/cgi-bin\/\n   ScriptAlias \/nagios\/cgi-bin \/usr\/local\/www\/nagios\/cgi-bin\/\n\n   &lt;Directory \"\/usr\/local\/www\/nagios\/cgi-bin\"&gt;\n      Options ExecCGI\n      AllowOverride None\n      #Require all denied\n      Require ip 127.0.0.1 192.168.60.1\n   &lt;\/Directory&gt;\n \n   Alias \/nagios\/ \/usr\/local\/www\/nagios\/\n   Alias \/nagios \/usr\/local\/www\/nagios\/\n \n   &lt;Directory \"\/usr\/local\/www\/nagios\"&gt;\n      Options None\n      AllowOverride None\n      #Require all denied\n      Require ip 127.0.0.1 192.168.60.1\n \n      php_flag engine on\n      php_admin_value open_basedir \/usr\/local\/www\/nagios\/:\/var\/spool\/nagios\/\n   &lt;\/Directory&gt;\n   &lt;Location \"\/\"&gt;\n      AuthName \"Restricted Nagios Access\"\n      AuthType Basic\n      AuthUserFile \/usr\/local\/www\/nagios\/htpasswd.users\n      Require valid-user\n   &lt;\/Location&gt;\n&lt;\/VirtualHost&gt;\n'EOL'<\/code><\/pre>\n\n\n\n<p>As you can see above, we have allowed access to our local Nagios from everywhere (<strong><code>Require all granted<\/code><\/strong>) and also enabled basic authentication to access Nagios web resources.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Configure Nagios  Templates<\/h4>\n\n\n\n<p>Configuration templates are available in <strong><code>\/usr\/local\/etc\/nagios<\/code><\/strong> as <code>*.cfg-sample<\/code> files.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>ls -1 \/usr\/local\/etc\/nagios\/<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>cgi.cfg-sample\nnagios.cfg-sample\nobjects\nresource.cfg-sample<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>ls -1 \/usr\/local\/etc\/nagios\/objects\/<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>commands.cfg-sample\ncontacts.cfg-sample\nlocalhost.cfg-sample\nprinter.cfg-sample\nswitch.cfg-sample\ntemplates.cfg-sample\ntimeperiods.cfg-sample\nwindows.cfg-sample<\/code><\/pre>\n\n\n\n<p>Copy them to *.cfg files where required and edit to suit your needs.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>cd \/usr\/local\/etc\/nagios\/<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>find . -type f -name \"*.cfg-sample\" -exec sh -c 'cp {} $(dirname {})\/$(basename {} .cfg-sample).cfg' \\;<\/code><\/pre>\n\n\n\n<p>Just to confirm;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>ls -1 \/usr\/local\/etc\/nagios\/<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>cgi.cfg\ncgi.cfg-sample\nnagios.cfg\nnagios.cfg-sample\nobjects\nresource.cfg\nresource.cfg-sample<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>ls -1 \/usr\/local\/etc\/nagios\/objects\/<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>commands.cfg\ncommands.cfg-sample\ncontacts.cfg\ncontacts.cfg-sample\nlocalhost.cfg\nlocalhost.cfg-sample\nprinter.cfg\nprinter.cfg-sample\nswitch.cfg\nswitch.cfg-sample\ntemplates.cfg\ntemplates.cfg-sample\ntimeperiods.cfg\ntimeperiods.cfg-sample\nwindows.cfg\nwindows.cfg-sample<\/code><\/pre>\n\n\n\n<p>If you want, you can configure the Nagios objects as you wish. for in this setup, we will go with the default settings.<\/p>\n\n\n\n<p>Set the ownership of Nagios configuration files to <code><strong>nagios<\/strong><\/code> user.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>chown -R nagios:nagios \/usr\/local\/etc\/nagios\/<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Create Nagios Basic Authentication Users<\/h4>\n\n\n\n<p>Create users and password for authenticating to Nagios web resources;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>htpasswd -c \/usr\/local\/www\/nagios\/htpasswd.users kifarunix<\/code><\/pre>\n\n\n\n<p>The default authentication user is <code><strong>nagiosadmin<\/strong><\/code>. If you use a different user, you will need to make changes on the <code><strong>cgi.cfg<\/strong><\/code> file by replacing the user nagiosadmin appropriatetly.<\/p>\n\n\n\n<p>For example, in our case, we use the user <code><strong>kifarunix<\/strong><\/code> and hence, to replace the default <code><strong>nagiosadmin<\/strong><\/code> user use the command below;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sed -i.org 's\/nagiosadmin\/kifarunix\/g' \/usr\/local\/etc\/nagios\/cgi.cfg<\/code><\/pre>\n\n\n\n<p>To add another user to the file, <strong><code>omit<\/code><\/strong> option <code>-c<\/code> in the command above.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Verify Nagios configuration data<\/h4>\n\n\n\n<p>You can now verify all configuration data just to ensure that there is no error;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>nagios -v \/usr\/local\/etc\/nagios\/nagios.cfg<\/code><\/pre>\n\n\n\n<p>Sample output;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Nagios Core 4.4.6\nCopyright (c) 2009-present Nagios Core Development Team and Community Contributors\nCopyright (c) 1999-2009 Ethan Galstad\nLast Modified: 2020-04-28\nLicense: GPL\n\nWebsite: https:\/\/www.nagios.org\nReading configuration data...\n   Read main config file okay...\n   Read object config files okay...\n\nRunning pre-flight check on configuration data...\n\nChecking objects...\n\tChecked 8 services.\n\tChecked 1 hosts.\n\tChecked 1 host groups.\n\tChecked 0 service groups.\n\tChecked 1 contacts.\n\tChecked 1 contact groups.\n\tChecked 24 commands.\n\tChecked 5 time periods.\n\tChecked 0 host escalations.\n\tChecked 0 service escalations.\nChecking for circular paths...\n\tChecked 1 hosts\n\tChecked 0 service dependencies\n\tChecked 0 host dependencies\n\tChecked 5 timeperiods\nChecking global event handlers...\nChecking obsessive compulsive processor commands...\nChecking misc settings...\n\nTotal Warnings: 0\nTotal Errors:   0\n\nThings look okay - No serious problems were detected during the pre-flight check<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Running Nagios on FreeBSD<\/h4>\n\n\n\n<p>Start and enable Nagios to run on system boot;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sysrc nagios_enable=\"YES\"<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>service nagios start<\/code><\/pre>\n\n\n\n<p>Check status;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>service nagios status<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>nagios is running as pid 3584.<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Running Apache<\/h4>\n\n\n\n<p>Enable Apache to run on system boot;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>sysrc apache24_enable=\"YES\"<\/code><\/pre>\n\n\n\n<p>Perform sanity check of Apache configuration;\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>apachectl configtest<\/code><\/pre>\n\n\n\n<p>If you get the output, <strong><code>Syntax OK<\/code><\/strong>, start Apache.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>service apache24 restart<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Accessing Nagios Web Interface on FreeBSD<\/h3>\n\n\n\n<p>You can now access your Nagios Web interface using the url <code><strong>http:\/\/server-host-name-OR-IP<\/strong><\/code> or <strong><code>http:\/\/server-host-name-OR-IP\/nagios<\/code><\/strong> or <code><strong>http:\/\/server-host-name-OR-IP\/nagios\/<\/strong><\/code>.<\/p>\n\n\n\n<p>Enter your basic authentication credentials;<\/p>\n\n\n\n<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/04\/freebsd-nagios-basic-auth.png\" class=\"td-modal-image\"><figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1454\" height=\"428\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/04\/freebsd-nagios-basic-auth.png\" alt=\"Install Nagios Core on FreeBSD 13\" class=\"wp-image-8685\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/04\/freebsd-nagios-basic-auth.png?v=1618681946 1454w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/04\/freebsd-nagios-basic-auth-768x226.png?v=1618681946 768w\" sizes=\"(max-width: 1454px) 100vw, 1454px\" \/><\/figure><\/a><\/div>\n\n\n\n<p>Click sign in to proceed to dashboard.<\/p>\n\n\n\n<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/04\/nagios-web-interface-freebsd.png\" class=\"td-modal-image\"><figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1902\" height=\"862\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/04\/nagios-web-interface-freebsd.png\" alt=\"Install Nagios Core on FreeBSD 13\" class=\"wp-image-8686\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/04\/nagios-web-interface-freebsd.png?v=1618681972 1902w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/04\/nagios-web-interface-freebsd-768x348.png?v=1618681972 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/04\/nagios-web-interface-freebsd-1536x696.png?v=1618681972 1536w\" sizes=\"(max-width: 1902px) 100vw, 1902px\" \/><\/figure><\/a><\/div>\n\n\n\n<p>And there you go.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Other Tutorials<\/h3>\n\n\n\n<p><a aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/add-hosts-to-nagios-server-for-monitoring\/\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Add Hosts to Nagios Server For Monitoring<\/a><\/p>\n\n\n\n<p><a aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/configure-nagios-email-notification-using-gmail\/\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Configure Nagios Email Notification Using Gmail<\/a><\/p>\n\n\n\n<p><a aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/monitor-ssl-tls-certificates-expiry-with-nagios\/\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Monitor SSL\/TLS Certificates Expiry with Nagios<\/a><\/p>\n\n\n\n<p><a aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/monitor-linux-hosts-using-nagios-check_by_ssh-plugin\/\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Monitor Linux Hosts using Nagios check_by_ssh Plugin<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/nagios-snmp-monitoring-of-linux-hosts-on-alienvault-usm-ossim\/\" target=\"_blank\" aria-label=\" (opens in a new tab)\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Nagios SNMP Monitoring of Linux Hosts on AlienVault USM\/OSSIM<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this guide, we are going to learn how to install Nagios Core on FreeBSD 13.&nbsp;Nagios&nbsp;is an opensource tool that provides an enterprise-class central monitoring<\/p>\n","protected":false},"author":1,"featured_media":8688,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_lock_modified_date":false,"footnotes":""},"categories":[73,280,121,72],"tags":[1063,3454,3451,3453,76,3452],"class_list":["post-8678","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-nagios","category-freebsd","category-howtos","category-monitoring","tag-freebsd","tag-freebsd-nagios","tag-install-nagios-core-on-freebsd-13","tag-nagios-basic-authentication-freebsd","tag-nagios-core","tag-nagios-freebsd","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\/8678"}],"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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/comments?post=8678"}],"version-history":[{"count":8,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/8678\/revisions"}],"predecessor-version":[{"id":21839,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/8678\/revisions\/21839"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media\/8688"}],"wp:attachment":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media?parent=8678"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/categories?post=8678"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/tags?post=8678"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}