{"id":147086,"date":"2013-11-20T06:41:18","date_gmt":"2013-11-20T14:41:18","guid":{"rendered":"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/"},"modified":"2013-11-20T06:41:18","modified_gmt":"2013-11-20T14:41:18","slug":"orocrm-installation-on-server-with-nginx-php-fpm","status":"publish","type":"post","link":"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/","title":{"rendered":"OroCRM installation on server with nginx + php-fpm"},"content":{"rendered":"<p>There are different options of running OroCRM on your server. In this blog post we will described how to run the OroCRM application on a Linux server with nginx + php-fpm.<br \/>\nSystem environment: Ubuntu 13.10<\/p>\n<h2>Server components installation<\/h2>\n<p>Let&#8217;s start by installing Nginx, PHP and MySQL. In shell execute one of the sets of commands based on your chosen distro.<\/p>\n<p><!--more--><br \/>\n<code>apt-get install nginx<br \/>\napt-get install curl<br \/>\napt-get install php5-cli php5-common php5-mysql php5-suhosin php5-gd php5-fpm php5-fpm php-pear php5-mcrypt php5-intl php5-json php5-curl<br \/>\napt-get install mysql-server<br \/>\napt-get install git<br \/>\napt-get install openjdk-7-jre-headless<br \/>\napt-get install nodejs<br \/>\ncd \/etc\/php5\/fpm\/conf.d<br \/>\nln -s ..\/..\/conf.d\/mcrypt.ini 20-mcrypt.ini<br \/>\n<\/code><\/p>\n<h3>nginx configuration<\/h3>\n<p>Go to Nginx configuration folder \/etc\/nginx. Change HTTP timeouts.<\/p>\n<p><code>cd \/etc\/nginx<br \/>\nvi .\/conf.d\/options.conf<br \/>\nclient_header_timeout 10m;<br \/>\nclient_body_timeout 10m;<br \/>\nsend_timeout 10m;<br \/>\nreal_ip_header X-Forwarded-For;<br \/>\n<\/code><\/p>\n<p>Create OroCRM project configuration. Go to \/etc\/nginx\/sites-available and create orocrm file there<br \/>\n<code>server {<br \/>\nserver_name *.local;<br \/>\nroot \/var\/www\/project\/dev\/$host\/web;<br \/>\nindex app.php;<br \/>\naccess_log \/var\/log\/nginx\/$host.access_log;<br \/>\nerror_log \/var\/log\/nginx\/dev.error_log info;<br \/>\ntry_files $uri $uri\/ @rewrite;<br \/>\nlocation @rewrite {<br \/>\nrewrite ^\/(.*)$ \/app.php\/$1;<br \/>\n}<br \/>\nlocation ~ [^\/].php(\/|$) {<br \/>\nfastcgi_split_path_info ^(.+?.php)(\/.*)$;<br \/>\nif (!-f $document_root$fastcgi_script_name) {<br \/>\nreturn 404;<br \/>\n}<br \/>\nfastcgi_index app.php;<br \/>\nfastcgi_read_timeout 10m;<br \/>\nfastcgi_pass unix:\/var\/run\/php5-fpm.sock;<br \/>\nfastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;<br \/>\ninclude fastcgi_params;<br \/>\n}<br \/>\n}<br \/>\n<\/code><\/p>\n<p>Let&#8217;s review configuration in details. Listen on all .local subdomains.<\/p>\n<p><code>server_name *.local;<br \/>\n<\/code><\/p>\n<p>Set server root and set directory index to app.php<\/p>\n<p><code>root \/var\/www\/project\/dev\/$host\/web;<br \/>\nindex app.php;<br \/>\n<\/code><\/p>\n<p>$host variable used to support different projects. For example host http:\/\/oro-crm.local\/ will be mapped to \/var\/www\/project\/dev\/oro-crm.local\/web<br \/>\nConfigure server logs. It&#8217;s sad but we are unable to use $host for errors logging<\/p>\n<p><code>access_log \/var\/log\/nginx\/$host.access_log;<br \/>\nerror_log \/var\/log\/nginx\/dev.error_log info;<br \/>\n<\/code><\/p>\n<p>Support links without PHP file name in them<\/p>\n<p><code>try_files $uri $uri\/ @rewrite;<br \/>\nlocation @rewrite {<br \/>\nrewrite ^\/(.*)$ \/app.php\/$1;<br \/>\n}<br \/>\n<\/code><\/p>\n<p>Redirect all request to PHP files to PHP-FPM, set script execution wait timeout to 10 minutes, connect to php-fpm with socket<\/p>\n<p><code>location ~ [^\/].php(\/|$) {<br \/>\nfastcgi_split_path_info ^(.+?.php)(\/.*)$;<br \/>\nif (!-f $document_root$fastcgi_script_name) {<br \/>\nreturn 404;<br \/>\n}<br \/>\nfastcgi_index app.php;<br \/>\nfastcgi_read_timeout 10m;<br \/>\nfastcgi_pass unix:\/var\/run\/php5-fpm.sock;<br \/>\nfastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;<br \/>\ninclude fastcgi_params;<br \/>\n}<br \/>\n<\/code><\/p>\n<p>To enable OroCRM config symlink it to \/etc\/nginx\/sites-enabled folder with the following command<\/p>\n<p><code>cd \/etc\/nginx<br \/>\nln -s .\/sites-available\/oro .\/sites-enabled\/oro<br \/>\n<\/code><\/p>\n<h3>PHP-FPM configuration<\/h3>\n<p>Basic PHP-FPM configuration. The main thing here is to set user and group to the same ones used in nginx.conf and listen on socket that used for FastCGI requests from Nginx.<br \/>\nGo to \/etc\/php5\/fpm\/pool.d and edit www.conf. Below are the listed options that need to be enabled and set. All other options may be used as is in this file.<\/p>\n<p><code>[www]<br \/>\nlisten = \/var\/run\/php5-fpm.sock<br \/>\nlisten.owner = www-data<br \/>\nlisten.group = www-data<br \/>\nlisten.mode = 0666<br \/>\nuser = www-data<br \/>\ngroup = www-data<br \/>\n<\/code><\/p>\n<h3>PHP configuration<\/h3>\n<p>To run OroCRM you need to change the following PHP option in php.ini. Go to \/etc\/php5\/fpm and edit php.ini there<\/p>\n<p><code>memory_limit = 512M<br \/>\ndate.timezone = #For example America\/Los_Angeles<br \/>\n<\/code><\/p>\n<p>If you have installed another web server on 80 port you need to stop it or change listening port. For example to stop Apache web server execute the following command.<\/p>\n<p><code>\/etc\/init.d\/apache2 stop<br \/>\n<\/code><\/p>\n<p>Finally run installed and configured services<\/p>\n<p><code>\/etc\/init.d\/mysql start<br \/>\n\/etc\/init.d\/php5-fpm start<br \/>\n\/etc\/init.d\/nginx start<br \/>\n<\/code><\/p>\n<h3>Add host name to hosts file<\/h3>\n<p><code>127.0.0.1 oro-crm.local<br \/>\n<\/code><\/p>\n<h2>Installing OroCRM<\/h2>\n<p>Download OroCRM application from github<\/p>\n<p><code>mkdir \/var\/www\/project\/dev<br \/>\ncd \/var\/www\/project\/dev<br \/>\ngit clone https:\/\/github.com\/orocrm\/crm-application.git oro-crm.local<br \/>\n<\/code><\/p>\n<p>Install composer<\/p>\n<p><code>curl -sS https:\/\/getcomposer.org\/installer | php -- --install-dir=\/usr\/local\/bin<br \/>\n<\/code><\/p>\n<p>Install OroCRM dependencies<\/p>\n<p><code>cd oro-crm.local<br \/>\ncomposer.phar install --prefer-dist<br \/>\n<\/code><\/p>\n<p>Fix permissions<\/p>\n<p><code>chown www-data:www-data -R \/var\/www\/project\/dev\/oro-crm.local<br \/>\n<\/code><\/p>\n<p>Now navigate to http:\/\/oro-crm.local\/install.php and follow installation instructions<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are different options of running OroCRM on your server. In this blog post we will described how to run the OroCRM application on a Linux server with nginx + php-fpm. System environment: Ubuntu 13.10 Server components installation Let&#8217;s start by installing Nginx, PHP and MySQL. In shell execute one of the sets of commands [&hellip;]<\/p>\n","protected":false},"author":44013,"featured_media":0,"comment_status":"open","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"ep_exclude_from_search":false,"footnotes":""},"categories":[132,6],"tags":[331,332,133,333,334],"class_list":{"0":"post-147086","1":"post","2":"type-post","3":"status-publish","4":"format-standard","6":"category-developers-digest","7":"category-product-news-updates","8":"tag-linux","9":"tag-nginx","10":"tag-orocrm","11":"tag-orocrm-installation","12":"tag-php-fpm"},"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>OroCRM installation on server with nginx + php-fpm | OroCommerce<\/title>\n<meta name=\"description\" content=\"In this blog post we will described how to run the OroCRM application on a Linux server with nginx + php-fpm. Installation OroCRM application\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"OroCRM installation on server with nginx + php-fpm | OroCommerce\" \/>\n<meta property=\"og:description\" content=\"In this blog post we will described how to run the OroCRM application on a Linux server with nginx + php-fpm. Installation OroCRM application\" \/>\n<meta property=\"og:url\" content=\"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/\" \/>\n<meta property=\"og:site_name\" content=\"OroCommerce\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/OroCommerce-333319140210515\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-11-20T14:41:18+00:00\" \/>\n<meta name=\"author\" content=\"Oro Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@orocommerce\" \/>\n<meta name=\"twitter:site\" content=\"@orocommerce\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Oro Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/\"},\"author\":{\"name\":\"Oro Team\",\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/#\/schema\/person\/4668389a908cbec4f872097fc097bb4b\"},\"headline\":\"OroCRM installation on server with nginx + php-fpm\",\"datePublished\":\"2013-11-20T14:41:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/\"},\"wordCount\":357,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/#organization\"},\"keywords\":[\"Linux\",\"nginx\",\"OroCRM\",\"OroCRM Installation\",\"php-fpm\"],\"articleSection\":[\"Developers' Digest\",\"Product News &amp; Updates\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/\",\"url\":\"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/\",\"name\":\"OroCRM installation on server with nginx + php-fpm | OroCommerce\",\"isPartOf\":{\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/#website\"},\"datePublished\":\"2013-11-20T14:41:18+00:00\",\"description\":\"In this blog post we will described how to run the OroCRM application on a Linux server with nginx + php-fpm. Installation OroCRM application\",\"breadcrumb\":{\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/oroinc.com\/b2b-ecommerce\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Developers' Digest\",\"item\":\"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/category\/developers-digest\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"OroCRM installation on server with nginx + php-fpm\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/#website\",\"url\":\"https:\/\/oroinc.com\/b2b-ecommerce\/\",\"name\":\"OroCommerce\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/oroinc.com\/b2b-ecommerce\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/#organization\",\"name\":\"Oro Inc.\",\"url\":\"https:\/\/oroinc.com\/b2b-ecommerce\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/oroinc.com\/b2b-ecommerce\/wp-content\/uploads\/sites\/3\/2019\/11\/Oro-OLogo.png\",\"contentUrl\":\"https:\/\/oroinc.com\/b2b-ecommerce\/wp-content\/uploads\/sites\/3\/2019\/11\/Oro-OLogo.png\",\"width\":40,\"height\":40,\"caption\":\"Oro Inc.\"},\"image\":{\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/OroCommerce-333319140210515\/\",\"https:\/\/x.com\/orocommerce\",\"https:\/\/www.youtube.com\/channel\/UClxsA8HS9KGEEsvFRn7JkvQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/oroinc.com\/b2b-ecommerce\/#\/schema\/person\/4668389a908cbec4f872097fc097bb4b\",\"name\":\"Oro Team\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"OroCRM installation on server with nginx + php-fpm | OroCommerce","description":"In this blog post we will described how to run the OroCRM application on a Linux server with nginx + php-fpm. Installation OroCRM application","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:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/","og_locale":"en_US","og_type":"article","og_title":"OroCRM installation on server with nginx + php-fpm | OroCommerce","og_description":"In this blog post we will described how to run the OroCRM application on a Linux server with nginx + php-fpm. Installation OroCRM application","og_url":"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/","og_site_name":"OroCommerce","article_publisher":"https:\/\/www.facebook.com\/OroCommerce-333319140210515\/","article_published_time":"2013-11-20T14:41:18+00:00","author":"Oro Team","twitter_card":"summary_large_image","twitter_creator":"@orocommerce","twitter_site":"@orocommerce","twitter_misc":{"Written by":"Oro Team","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/#article","isPartOf":{"@id":"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/"},"author":{"name":"Oro Team","@id":"https:\/\/oroinc.com\/b2b-ecommerce\/#\/schema\/person\/4668389a908cbec4f872097fc097bb4b"},"headline":"OroCRM installation on server with nginx + php-fpm","datePublished":"2013-11-20T14:41:18+00:00","mainEntityOfPage":{"@id":"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/"},"wordCount":357,"commentCount":0,"publisher":{"@id":"https:\/\/oroinc.com\/b2b-ecommerce\/#organization"},"keywords":["Linux","nginx","OroCRM","OroCRM Installation","php-fpm"],"articleSection":["Developers' Digest","Product News &amp; Updates"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/","url":"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/","name":"OroCRM installation on server with nginx + php-fpm | OroCommerce","isPartOf":{"@id":"https:\/\/oroinc.com\/b2b-ecommerce\/#website"},"datePublished":"2013-11-20T14:41:18+00:00","description":"In this blog post we will described how to run the OroCRM application on a Linux server with nginx + php-fpm. Installation OroCRM application","breadcrumb":{"@id":"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/orocrm-installation-on-server-with-nginx-php-fpm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/oroinc.com\/b2b-ecommerce\/"},{"@type":"ListItem","position":2,"name":"Developers' Digest","item":"https:\/\/oroinc.com\/b2b-ecommerce\/blog\/category\/developers-digest\/"},{"@type":"ListItem","position":3,"name":"OroCRM installation on server with nginx + php-fpm"}]},{"@type":"WebSite","@id":"https:\/\/oroinc.com\/b2b-ecommerce\/#website","url":"https:\/\/oroinc.com\/b2b-ecommerce\/","name":"OroCommerce","description":"","publisher":{"@id":"https:\/\/oroinc.com\/b2b-ecommerce\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/oroinc.com\/b2b-ecommerce\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/oroinc.com\/b2b-ecommerce\/#organization","name":"Oro Inc.","url":"https:\/\/oroinc.com\/b2b-ecommerce\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/oroinc.com\/b2b-ecommerce\/#\/schema\/logo\/image\/","url":"https:\/\/oroinc.com\/b2b-ecommerce\/wp-content\/uploads\/sites\/3\/2019\/11\/Oro-OLogo.png","contentUrl":"https:\/\/oroinc.com\/b2b-ecommerce\/wp-content\/uploads\/sites\/3\/2019\/11\/Oro-OLogo.png","width":40,"height":40,"caption":"Oro Inc."},"image":{"@id":"https:\/\/oroinc.com\/b2b-ecommerce\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/OroCommerce-333319140210515\/","https:\/\/x.com\/orocommerce","https:\/\/www.youtube.com\/channel\/UClxsA8HS9KGEEsvFRn7JkvQ"]},{"@type":"Person","@id":"https:\/\/oroinc.com\/b2b-ecommerce\/#\/schema\/person\/4668389a908cbec4f872097fc097bb4b","name":"Oro Team"}]}},"_links":{"self":[{"href":"https:\/\/oroinc.com\/b2b-ecommerce\/wp-json\/wp\/v2\/posts\/147086","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/oroinc.com\/b2b-ecommerce\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/oroinc.com\/b2b-ecommerce\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/oroinc.com\/b2b-ecommerce\/wp-json\/wp\/v2\/users\/44013"}],"replies":[{"embeddable":true,"href":"https:\/\/oroinc.com\/b2b-ecommerce\/wp-json\/wp\/v2\/comments?post=147086"}],"version-history":[{"count":0,"href":"https:\/\/oroinc.com\/b2b-ecommerce\/wp-json\/wp\/v2\/posts\/147086\/revisions"}],"wp:attachment":[{"href":"https:\/\/oroinc.com\/b2b-ecommerce\/wp-json\/wp\/v2\/media?parent=147086"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/oroinc.com\/b2b-ecommerce\/wp-json\/wp\/v2\/categories?post=147086"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/oroinc.com\/b2b-ecommerce\/wp-json\/wp\/v2\/tags?post=147086"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}