{"id":33468,"date":"2020-04-22T14:39:08","date_gmt":"2020-04-22T11:09:08","guid":{"rendered":"https:\/\/airoserver.com\/?p=2590"},"modified":"2022-03-29T16:09:37","modified_gmt":"2022-03-29T11:39:37","slug":"setup-nginx-server-block-part-2","status":"publish","type":"post","link":"https:\/\/airoserver.com\/fa\/uncategorized\/setup-nginx-server-block-part-2\/","title":{"rendered":"Setup Nginx Server Block (Part 2)"},"content":{"rendered":"<p>In our last post, we explained that if you want to handle more than one domain using Nginx, you need to set up the Nginx Server block. We also explained half of the steps so if you haven&#8217;t checked that out yet, here is the link:<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li><strong><a href=\"https:\/\/airoserver.com\/fa\/dedicated\/setup-nginx-server-blocks-part-1\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"Setup Nginx Server Blocks (Part 1) (opens in a new tab)\">Setup Nginx Server Blocks (Part 1)<\/a><\/strong><\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p>We completed setting up the Nginx server block for the first <a href=\"https:\/\/airoserver.com\/fa\/dedicated\/icann-and-domain\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"domain (opens in a new tab)\">domain<\/a> so let&#8217;s go and setup the second server block.<\/p>\r\n\r\n\r\n\r\n<h4 class=\"wp-block-heading\"><strong>Setup the second Nginx server block<\/strong><\/h4>\r\n\r\n\r\n\r\n<p>We need to do the exact same thing for the second domain. There is only going to be one difference through this process and it&#8217;s that we need to remove default_server from the listen directory in config file. This is because we can only have one default_server or else the <a href=\"https:\/\/airoserver.com\/fa\/dedicated\/web-server\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"webserver (opens in a new tab)\">webserver<\/a> won&#8217;t work.<\/p>\r\n\r\n\r\n\r\n<p>There is a default server block in this path:<\/p>\r\n\r\n\r\n\r\n<p><strong><em>\/etc\/nginx\/sites-available\/default <\/em><\/strong><\/p>\r\n\r\n\r\n\r\n<p>Now we copy the file with a new name based on the domain:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>sudo cp \/etc\/nginx\/sites-available\/default \/etc\/nginx\/sites-available\/mytest2.com<\/code><\/pre>\r\n\r\n\r\n\r\n<p>Then we need to edit the file:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>sudo nano \/etc\/nginx\/sites-available\/mytest2.com<\/code><\/pre>\r\n\r\n\r\n\r\n<p>Scroll the file to find the &#8220;listen&#8221; section:<\/p>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img decoding=\"async\" class=\"wp-image-2593\" src=\"https:\/\/airoserver.com\/wp-content\/uploads\/2020\/04\/server1.png\" alt=\"Edit file\" \/><\/figure>\r\n<\/div>\r\n\r\n\r\n\r\n<p>Remove default_server from the &#8220;listen&#8221; section:<\/p>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img decoding=\"async\" class=\"wp-image-2594\" src=\"https:\/\/airoserver.com\/wp-content\/uploads\/2020\/04\/server2.png\" alt=\"\" \/><\/figure>\r\n<\/div>\r\n\r\n\r\n\r\n<p>Find the root \/var\/www\/html in the mentioned file and replace it with the path of the directory you made earlier. For example \/var\/www\/mytest2.com\/public_html.<\/p>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img decoding=\"async\" class=\"wp-image-2595\" src=\"https:\/\/airoserver.com\/wp-content\/uploads\/2020\/04\/server3.png\" alt=\"\" \/><\/figure>\r\n<\/div>\r\n\r\n\r\n\r\n<p>Now find the server_name _;\u00a0 line and change the domain name. (You can search for this line using Ctrl+W)<\/p>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img decoding=\"async\" class=\"wp-image-2596\" src=\"https:\/\/airoserver.com\/wp-content\/uploads\/2020\/04\/server4.png\" alt=\"\" \/><\/figure>\r\n<\/div>\r\n\r\n\r\n\r\n<p>Save the changes and close the file. (Use Ctrl+X then Y to save changes)<\/p>\r\n\r\n\r\n\r\n<p>Just like the other one let&#8217;s make sure the Nginx config file exists:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>sudo nginx -t<\/code><\/pre>\r\n\r\n\r\n\r\n<p>You should see this as a result:<\/p>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img decoding=\"async\" class=\"wp-image-2585\" src=\"https:\/\/airoserver.com\/wp-content\/uploads\/2020\/04\/root3.png\" alt=\"\" \/><\/figure>\r\n<\/div>\r\n\r\n\r\n\r\n<p>You are done setting up the second Nginx server block.<\/p>\r\n\r\n\r\n\r\n<h4 class=\"wp-block-heading\"><strong>Creating a Symbolic Link<\/strong><\/h4>\r\n\r\n\r\n\r\n<p>Now we are going to create a symbolic link from sites-available in the sites-enabled directory. This will technically call the Nginx web server.<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>sudo ln -s \/etc\/nginx\/sites-available\/mytest1.com \/etc\/nginx\/sites-enabled\/<\/code><\/pre>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>sudo ln -s \/etc\/nginx\/sites-available\/mytest2.com \/etc\/nginx\/sites-enabled\/<\/code><\/pre>\r\n\r\n\r\n\r\n<p>Remove the symbolic link from the default server:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>sudo rm \/etc\/nginx\/sites-enabled\/default<\/code><\/pre>\r\n\r\n\r\n\r\n<p>Restart Nginx:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>sudo service nginx restart<\/code><\/pre>\r\n\r\n\r\n\r\n<h4 class=\"wp-block-heading\"><strong>Test<\/strong><\/h4>\r\n\r\n\r\n\r\n<p>Assuming that you have already done all the <a href=\"https:\/\/en.wikipedia.org\/wiki\/Domain_Name_System\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"DNS  (opens in a new tab)\">DNS <\/a>configurations on the Domain side and it&#8217;s <a href=\"https:\/\/airoserver.com\/fa\/dedicated\/how-to-point-your-domain-to-your-server\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"pointing to the Server (opens in a new tab)\">pointing to the Server<\/a>&#8216;s <a href=\"https:\/\/airoserver.com\/fa\/dedicated\/what-is-ip-versions-and-structure\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"IP (opens in a new tab)\">IP<\/a>, you can see the test page on your browser.<\/p>\r\n\r\n\r\n\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img decoding=\"async\" class=\"wp-image-2597\" src=\"https:\/\/airoserver.com\/wp-content\/uploads\/2020\/04\/ser6-300x228.png\" alt=\"Nginx Test Page\" \/><\/figure>\r\n<\/div>\r\n\r\n\r\n\r\n<p>Hope you enjoyed this post if you did, you can visit our <a href=\"https:\/\/airoserver.com\/fa\/blog\/\" target=\"_blank\" rel=\"noreferrer noopener\">blog<\/a> for more!<\/p>","protected":false},"excerpt":{"rendered":"<p>In our last post, we explained that if you want to handle more than one domain using Nginx, you need to set up the Nginx Server block. We also explained half of the steps so if you haven&#8217;t checked that out yet, here is the link: Setup Nginx Server Blocks (Part 1) We completed setting [&hellip;]<\/p>","protected":false},"author":5,"featured_media":33568,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[187],"tags":[85,186,142],"class_list":["post-33468","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-airoserver","tag-domain","tag-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Setup Nginx Server Block (Part 2)<\/title>\n<meta name=\"description\" content=\"During setting up the second Nginx server block, There is only one difference through this process: remove default_server from the listen director in ...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/airoserver.com\/fa\/uncategorized\/setup-nginx-server-block-part-2\/\" \/>\n<meta property=\"og:locale\" content=\"fa_IR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Setup Nginx Server Block (Part 2)\" \/>\n<meta property=\"og:description\" content=\"During setting up the second Nginx server block, There is only one difference through this process: remove default_server from the listen director in ...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/airoserver.com\/fa\/uncategorized\/setup-nginx-server-block-part-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Airoserver | Cloud Hosting Solutions\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-22T11:09:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-29T11:39:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/airoserver.com\/wp-content\/uploads\/2020\/04\/Setup-Nginx-Server-Blocks.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"422\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"SEO Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u0646\u0648\u0634\u062a\u0647\u200c\u0634\u062f\u0647 \u0628\u062f\u0633\u062a\" \/>\n\t<meta name=\"twitter:data1\" content=\"SEO Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u0632\u0645\u0627\u0646 \u062a\u0642\u0631\u06cc\u0628\u06cc \u0628\u0631\u0627\u06cc \u062e\u0648\u0627\u0646\u062f\u0646\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 \u062f\u0642\u06cc\u0642\u0647\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/\"},\"author\":{\"name\":\"SEO Team\",\"@id\":\"https:\/\/airoserver.com\/#\/schema\/person\/62f9488eeb65ea1e571178292d4bb897\"},\"headline\":\"Setup Nginx Server Block (Part 2)\",\"datePublished\":\"2020-04-22T11:09:08+00:00\",\"dateModified\":\"2022-03-29T11:39:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/\"},\"wordCount\":371,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/airoserver.com\/#organization\"},\"keywords\":[\"airoserver\",\"Domain\",\"Linux\"],\"articleSection\":[\"Uncategorized\"],\"inLanguage\":\"fa-IR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/\",\"url\":\"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/\",\"name\":\"Setup Nginx Server Block (Part 2)\",\"isPartOf\":{\"@id\":\"https:\/\/airoserver.com\/#website\"},\"datePublished\":\"2020-04-22T11:09:08+00:00\",\"dateModified\":\"2022-03-29T11:39:37+00:00\",\"description\":\"During setting up the second Nginx server block, There is only one difference through this process: remove default_server from the listen director in ...\",\"breadcrumb\":{\"@id\":\"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/#breadcrumb\"},\"inLanguage\":\"fa-IR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/airoserver.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Setup Nginx Server Block (Part 2)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/airoserver.com\/#website\",\"url\":\"https:\/\/airoserver.com\/\",\"name\":\"Airoserver | Cloud Hosting Solutions\",\"description\":\"Cloud server | Dedicated server | Domain | Hosting| SSL | Virtual server | Airoserver\",\"publisher\":{\"@id\":\"https:\/\/airoserver.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/airoserver.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"fa-IR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/airoserver.com\/#organization\",\"name\":\"Airoserver | Cloud Hosting Solutions\",\"url\":\"https:\/\/airoserver.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fa-IR\",\"@id\":\"https:\/\/airoserver.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/airoserver.com\/wp-content\/uploads\/2023\/09\/logo_airoserver.png\",\"contentUrl\":\"https:\/\/airoserver.com\/wp-content\/uploads\/2023\/09\/logo_airoserver.png\",\"width\":925,\"height\":880,\"caption\":\"Airoserver | Cloud Hosting Solutions\"},\"image\":{\"@id\":\"https:\/\/airoserver.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/airoserver.com\/#\/schema\/person\/62f9488eeb65ea1e571178292d4bb897\",\"name\":\"SEO Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fa-IR\",\"@id\":\"https:\/\/airoserver.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0cc6a1209a0e36c0bf4f0fcdcd743946df92fde7ba86163b0724f194a722a861?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0cc6a1209a0e36c0bf4f0fcdcd743946df92fde7ba86163b0724f194a722a861?s=96&d=mm&r=g\",\"caption\":\"SEO Team\"},\"url\":\"https:\/\/airoserver.com\/fa\/author\/seoteam\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Setup Nginx Server Block (Part 2)","description":"During setting up the second Nginx server block, There is only one difference through this process: remove default_server from the listen director in ...","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:\/\/airoserver.com\/fa\/uncategorized\/setup-nginx-server-block-part-2\/","og_locale":"fa_IR","og_type":"article","og_title":"Setup Nginx Server Block (Part 2)","og_description":"During setting up the second Nginx server block, There is only one difference through this process: remove default_server from the listen director in ...","og_url":"https:\/\/airoserver.com\/fa\/uncategorized\/setup-nginx-server-block-part-2\/","og_site_name":"Airoserver | Cloud Hosting Solutions","article_published_time":"2020-04-22T11:09:08+00:00","article_modified_time":"2022-03-29T11:39:37+00:00","og_image":[{"width":750,"height":422,"url":"https:\/\/airoserver.com\/wp-content\/uploads\/2020\/04\/Setup-Nginx-Server-Blocks.jpg","type":"image\/jpeg"}],"author":"SEO Team","twitter_card":"summary_large_image","twitter_misc":{"\u0646\u0648\u0634\u062a\u0647\u200c\u0634\u062f\u0647 \u0628\u062f\u0633\u062a":"SEO Team","\u0632\u0645\u0627\u0646 \u062a\u0642\u0631\u06cc\u0628\u06cc \u0628\u0631\u0627\u06cc \u062e\u0648\u0627\u0646\u062f\u0646":"2 \u062f\u0642\u06cc\u0642\u0647"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/#article","isPartOf":{"@id":"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/"},"author":{"name":"SEO Team","@id":"https:\/\/airoserver.com\/#\/schema\/person\/62f9488eeb65ea1e571178292d4bb897"},"headline":"Setup Nginx Server Block (Part 2)","datePublished":"2020-04-22T11:09:08+00:00","dateModified":"2022-03-29T11:39:37+00:00","mainEntityOfPage":{"@id":"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/"},"wordCount":371,"commentCount":0,"publisher":{"@id":"https:\/\/airoserver.com\/#organization"},"keywords":["airoserver","Domain","Linux"],"articleSection":["Uncategorized"],"inLanguage":"fa-IR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/","url":"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/","name":"Setup Nginx Server Block (Part 2)","isPartOf":{"@id":"https:\/\/airoserver.com\/#website"},"datePublished":"2020-04-22T11:09:08+00:00","dateModified":"2022-03-29T11:39:37+00:00","description":"During setting up the second Nginx server block, There is only one difference through this process: remove default_server from the listen director in ...","breadcrumb":{"@id":"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/#breadcrumb"},"inLanguage":"fa-IR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/airoserver.com\/uncategorized\/setup-nginx-server-block-part-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/airoserver.com\/"},{"@type":"ListItem","position":2,"name":"Setup Nginx Server Block (Part 2)"}]},{"@type":"WebSite","@id":"https:\/\/airoserver.com\/#website","url":"https:\/\/airoserver.com\/","name":"Airoserver | Cloud Hosting Solutions","description":"Cloud server | Dedicated server | Domain | Hosting| SSL | Virtual server | Airoserver","publisher":{"@id":"https:\/\/airoserver.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/airoserver.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fa-IR"},{"@type":"Organization","@id":"https:\/\/airoserver.com\/#organization","name":"Airoserver | Cloud Hosting Solutions","url":"https:\/\/airoserver.com\/","logo":{"@type":"ImageObject","inLanguage":"fa-IR","@id":"https:\/\/airoserver.com\/#\/schema\/logo\/image\/","url":"https:\/\/airoserver.com\/wp-content\/uploads\/2023\/09\/logo_airoserver.png","contentUrl":"https:\/\/airoserver.com\/wp-content\/uploads\/2023\/09\/logo_airoserver.png","width":925,"height":880,"caption":"Airoserver | Cloud Hosting Solutions"},"image":{"@id":"https:\/\/airoserver.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/airoserver.com\/#\/schema\/person\/62f9488eeb65ea1e571178292d4bb897","name":"SEO Team","image":{"@type":"ImageObject","inLanguage":"fa-IR","@id":"https:\/\/airoserver.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0cc6a1209a0e36c0bf4f0fcdcd743946df92fde7ba86163b0724f194a722a861?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0cc6a1209a0e36c0bf4f0fcdcd743946df92fde7ba86163b0724f194a722a861?s=96&d=mm&r=g","caption":"SEO Team"},"url":"https:\/\/airoserver.com\/fa\/author\/seoteam\/"}]}},"_links":{"self":[{"href":"https:\/\/airoserver.com\/fa\/wp-json\/wp\/v2\/posts\/33468","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/airoserver.com\/fa\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/airoserver.com\/fa\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/airoserver.com\/fa\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/airoserver.com\/fa\/wp-json\/wp\/v2\/comments?post=33468"}],"version-history":[{"count":0,"href":"https:\/\/airoserver.com\/fa\/wp-json\/wp\/v2\/posts\/33468\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/airoserver.com\/fa\/wp-json\/wp\/v2\/media\/33568"}],"wp:attachment":[{"href":"https:\/\/airoserver.com\/fa\/wp-json\/wp\/v2\/media?parent=33468"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/airoserver.com\/fa\/wp-json\/wp\/v2\/categories?post=33468"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/airoserver.com\/fa\/wp-json\/wp\/v2\/tags?post=33468"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}