{"id":694,"date":"2018-01-12T02:33:43","date_gmt":"2018-01-12T08:33:43","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=694"},"modified":"2018-01-31T08:56:21","modified_gmt":"2018-01-31T14:56:21","slug":"how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/","title":{"rendered":"How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy"},"content":{"rendered":"<p>We&#8217;ll show you, How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy. Odoo is one of the most popular and most powerful Open Source ERP business software based on the Python programming language. In this tutorial, we will show you how to install Odoo 10 on an Ubuntu 16.04 VPS and show you how to configure Nginx as a reverse proxy for your Odoo 10 so you can access your Odoo application via a domain without typing Odoo\u2019s port in the URL.<\/p>\n<p>The installation of Odoo 10 on an Ubuntu 16.04 VPS should take no longer than 20 minutes if you follow the very easy steps described below.<!--more--><\/p>\n<h2>1. Connect via SSH<\/h2>\n<p>First of all login to your Ubuntu 16.04 VPS via SSH as user root<\/p>\n<pre>ssh root@IP_address<\/pre>\n<h2>2. Start a screen session<\/h2>\n<p>At the very beginning, it is best to start a screen session by executing the following command:<\/p>\n<pre>screen -U -S odoo<\/pre>\n<h2>3.\u00a0Update the OS packages<\/h2>\n<p>Update the OS packages on your virtual server using the following commands:<\/p>\n<pre>apt-get update &amp;&amp; apt-get -y upgrade<\/pre>\n<p>Make sure to always keep your server up to date.<\/p>\n<h2>4. Download Install Script<\/h2>\n<p>In this tutorial, we are going to use the script from Yenthe Van Ginneken to install Odoo. You can download the script by running the following command:<\/p>\n<pre>wget https:\/\/raw.githubusercontent.com\/Yenthe666\/InstallScript\/10.0\/odoo_install.sh<\/pre>\n<p>Or, you can create a file and copy the following code to the new file (for example, \u2018odoo_install.sh\u2019).<\/p>\n<pre>nano odoo_install.sh<\/pre>\n<pre>#!\/bin\/bash\r\n################################################################################\r\n# Script for installing Odoo V10 on Ubuntu 16.04, 15.04, 14.04 (could be used for other version too)\r\n# Author: Yenthe Van Ginneken\r\n#-------------------------------------------------------------------------------\r\n# This script will install Odoo on your Ubuntu 14.04 server. It can install multiple Odoo instances\r\n# in one Ubuntu because of the different xmlrpc_ports\r\n#-------------------------------------------------------------------------------\r\n# Make a new file:\r\n# sudo nano odoo-install.sh\r\n# Place this content in it and then make the file executable:\r\n# sudo chmod +x odoo-install.sh\r\n# Execute the script to install Odoo:\r\n# .\/odoo-install\r\n################################################################################\r\n \r\n##fixed parameters\r\n#odoo\r\nOE_USER=&quot;odoo&quot;\r\nOE_HOME=&quot;\/$OE_USER&quot;\r\nOE_HOME_EXT=&quot;\/$OE_USER\/${OE_USER}-server&quot;\r\n#The default port where this Odoo instance will run under (provided you use the command -c in the terminal)\r\n#Set to true if you want to install it, false if you don&#039;t need it or have it already installed.\r\nINSTALL_WKHTMLTOPDF=&quot;True&quot;\r\n#Set the default Odoo port (you still have to use -c \/etc\/odoo-server.conf for example to use this.)\r\nOE_PORT=&quot;8069&quot;\r\n#Choose the Odoo version which you want to install. For example: 10.0, 9.0, 8.0, 7.0 or saas-6. When using &#039;trunk&#039; the master version will be installed.\r\n#IMPORTANT! This script contains extra libraries that are specifically needed for Odoo 10.0\r\nOE_VERSION=&quot;10.0&quot;\r\n# Set this to True if you want to install Odoo 10 Enterprise!\r\nIS_ENTERPRISE=&quot;False&quot;\r\n#set the superadmin password\r\nOE_SUPERADMIN=&quot;admin&quot;\r\nOE_CONFIG=&quot;${OE_USER}-server&quot;\r\n\r\n##\r\n###  WKHTMLTOPDF download links\r\n## === Ubuntu Trusty x64 &amp; x32 === (for other distributions please replace these two links,\r\n## in order to have correct version of wkhtmltox installed, for a danger note refer to \r\n## https:\/\/www.odoo.com\/documentation\/8.0\/setup\/install.html#deb ):\r\nWKHTMLTOX_X64=http:\/\/download.gna.org\/wkhtmltopdf\/0.12\/0.12.1\/wkhtmltox-0.12.1_linux-trusty-amd64.deb\r\nWKHTMLTOX_X32=http:\/\/download.gna.org\/wkhtmltopdf\/0.12\/0.12.1\/wkhtmltox-0.12.1_linux-trusty-i386.deb\r\n\r\n#--------------------------------------------------\r\n# Update Server\r\n#--------------------------------------------------\r\necho -e &quot;\\n---- Update Server ----&quot;\r\nsudo apt-get update\r\nsudo apt-get upgrade -y\r\n\r\n#--------------------------------------------------\r\n# Install PostgreSQL Server\r\n#--------------------------------------------------\r\necho -e &quot;\\n---- Install PostgreSQL Server ----&quot;\r\nsudo apt-get install postgresql -y\r\n\r\necho -e &quot;\\n---- Creating the ODOO PostgreSQL User  ----&quot;\r\nsudo su - postgres -c &quot;createuser -s $OE_USER&quot; 2&gt; \/dev\/null || true\r\n\r\n#--------------------------------------------------\r\n# Install Dependencies\r\n#--------------------------------------------------\r\necho -e &quot;\\n---- Install tool packages ----&quot;\r\nsudo apt-get install wget git python-pip gdebi-core -y\r\n\t\r\necho -e &quot;\\n---- Install python packages ----&quot;\r\nsudo apt-get install python-dateutil python-feedparser python-ldap python-libxslt1 python-lxml python-mako python-openid python-psycopg2 python-pybabel python-pychart python-pydot python-pyparsing python-reportlab python-simplejson python-tz python-vatnumber python-vobject python-webdav python-werkzeug python-xlwt python-yaml python-zsi python-docutils python-psutil python-mock python-unittest2 python-jinja2 python-pypdf python-decorator python-requests python-passlib python-pil -y python-suds\r\n\t\r\necho -e &quot;\\n---- Install python libraries ----&quot;\r\nsudo pip install gdata psycogreen ofxparse XlsxWriter\r\n\r\necho -e &quot;\\n--- Install other required packages&quot;\r\nsudo apt-get install node-clean-css -y\r\nsudo apt-get install node-less -y\r\nsudo apt-get install python-gevent -y\r\n\r\n#--------------------------------------------------\r\n# Install Wkhtmltopdf if needed\r\n#--------------------------------------------------\r\nif [ $INSTALL_WKHTMLTOPDF = &quot;True&quot; ]; then\r\n  echo -e &quot;\\n---- Install wkhtml and place shortcuts on correct place for ODOO 10 ----&quot;\r\n  #pick up correct one from x64 &amp; x32 versions:\r\n  if [ &quot;`getconf LONG_BIT`&quot; == &quot;64&quot; ];then\r\n      _url=$WKHTMLTOX_X64\r\n  else\r\n      _url=$WKHTMLTOX_X32\r\n  fi\r\n  sudo wget $_url\r\n  sudo gdebi --n `basename $_url`\r\n  sudo ln -s \/usr\/local\/bin\/wkhtmltopdf \/usr\/bin\r\n  sudo ln -s \/usr\/local\/bin\/wkhtmltoimage \/usr\/bin\r\nelse\r\n  echo &quot;Wkhtmltopdf isn&#039;t installed due to the choice of the user!&quot;\r\nfi\r\n\t\r\necho -e &quot;\\n---- Create ODOO system user ----&quot;\r\nsudo adduser --system --quiet --shell=\/bin\/bash --home=$OE_HOME --gecos &#039;ODOO&#039; --group $OE_USER\r\n#The user should also be added to the sudo&#039;ers group.\r\nsudo adduser $OE_USER sudo\r\n\r\necho -e &quot;\\n---- Create Log directory ----&quot;\r\nsudo mkdir \/var\/log\/$OE_USER\r\nsudo chown $OE_USER:$OE_USER \/var\/log\/$OE_USER\r\n\r\n#--------------------------------------------------\r\n# Install ODOO\r\n#--------------------------------------------------\r\necho -e &quot;\\n==== Installing ODOO Server ====&quot;\r\nsudo git clone --depth 1 --branch $OE_VERSION https:\/\/www.github.com\/odoo\/odoo $OE_HOME_EXT\/\r\n\r\nif [ $IS_ENTERPRISE = &quot;True&quot; ]; then\r\n    # Odoo Enterprise install!\r\n    echo -e &quot;\\n--- Create symlink for node&quot;\r\n    sudo ln -s \/usr\/bin\/nodejs \/usr\/bin\/node\r\n    sudo su $OE_USER -c &quot;mkdir $OE_HOME\/enterprise&quot;\r\n    sudo su $OE_USER -c &quot;mkdir $OE_HOME\/enterprise\/addons&quot;\r\n\r\n    echo -e &quot;\\n---- Adding Enterprise code under $OE_HOME\/enterprise\/addons ----&quot;\r\n    sudo git clone --depth 1 --branch 10.0 https:\/\/www.github.com\/odoo\/enterprise &quot;$OE_HOME\/enterprise\/addons&quot;\r\n\r\n    echo -e &quot;\\n---- Installing Enterprise specific libraries ----&quot;\r\n    sudo apt-get install nodejs npm\r\n    sudo npm install -g less\r\n    sudo npm install -g less-plugin-clean-css\r\nelse\r\n    echo -e &quot;\\n---- Create custom module directory ----&quot;\r\n    sudo su $OE_USER -c &quot;mkdir $OE_HOME\/custom&quot;\r\n    sudo su $OE_USER -c &quot;mkdir $OE_HOME\/custom\/addons&quot;\r\nfi\r\n\r\necho -e &quot;\\n---- Setting permissions on home folder ----&quot;\r\nsudo chown -R $OE_USER:$OE_USER $OE_HOME\/*\r\n\r\necho -e &quot;* Create server config file&quot;\r\nsudo cp $OE_HOME_EXT\/debian\/odoo.conf \/etc\/${OE_CONFIG}.conf\r\nsudo chown $OE_USER:$OE_USER \/etc\/${OE_CONFIG}.conf\r\nsudo chmod 640 \/etc\/${OE_CONFIG}.conf\r\n\r\necho -e &quot;* Change server config file&quot;\r\nsudo sed -i s\/&quot;db_user = .*&quot;\/&quot;db_user = $OE_USER&quot;\/g \/etc\/${OE_CONFIG}.conf\r\nsudo sed -i s\/&quot;; admin_passwd.*&quot;\/&quot;admin_passwd = $OE_SUPERADMIN&quot;\/g \/etc\/${OE_CONFIG}.conf\r\nsudo su root -c &quot;echo &#039;[options]&#039; &gt;&gt; \/etc\/${OE_CONFIG}.conf&quot;\r\nsudo su root -c &quot;echo &#039;logfile = \/var\/log\/$OE_USER\/$OE_CONFIG$1.log&#039; &gt;&gt; \/etc\/${OE_CONFIG}.conf&quot;\r\nif [  $IS_ENTERPRISE = &quot;True&quot; ]; then\r\n    sudo su root -c &quot;echo &#039;addons_path=$OE_HOME\/enterprise\/addons,$OE_HOME_EXT\/addons&#039; &gt;&gt; \/etc\/${OE_CONFIG}.conf&quot;\r\nelse\r\n    sudo su root -c &quot;echo &#039;addons_path=$OE_HOME_EXT\/addons,$OE_HOME\/custom\/addons&#039; &gt;&gt; \/etc\/${OE_CONFIG}.conf&quot;\r\nfi\r\n\r\necho -e &quot;* Create startup file&quot;\r\nsudo su root -c &quot;echo &#039;#!\/bin\/sh&#039; &gt;&gt; $OE_HOME_EXT\/start.sh&quot;\r\nsudo su root -c &quot;echo &#039;sudo -u $OE_USER $OE_HOME_EXT\/openerp-server --config=\/etc\/${OE_CONFIG}.conf&#039; &gt;&gt; $OE_HOME_EXT\/start.sh&quot;\r\nsudo chmod 755 $OE_HOME_EXT\/start.sh\r\n\r\n#--------------------------------------------------\r\n# Adding ODOO as a deamon (initscript)\r\n#--------------------------------------------------\r\n\r\necho -e &quot;* Create init file&quot;\r\ncat &lt; ~\/$OE_CONFIG\r\n#!\/bin\/sh\r\n### BEGIN INIT INFO\r\n# Provides: $OE_CONFIG\r\n# Required-Start: \\$remote_fs \\$syslog\r\n# Required-Stop: \\$remote_fs \\$syslog\r\n# Should-Start: \\$network\r\n# Should-Stop: \\$network\r\n# Default-Start: 2 3 4 5\r\n# Default-Stop: 0 1 6\r\n# Short-Description: Enterprise Business Applications\r\n# Description: ODOO Business Applications\r\n### END INIT INFO\r\nPATH=\/bin:\/sbin:\/usr\/bin\r\nDAEMON=$OE_HOME_EXT\/odoo-bin\r\nNAME=$OE_CONFIG\r\nDESC=$OE_CONFIG\r\n# Specify the user name (Default: odoo).\r\nUSER=$OE_USER\r\n# Specify an alternate config file (Default: \/etc\/openerp-server.conf).\r\nCONFIGFILE=&quot;\/etc\/${OE_CONFIG}.conf&quot;\r\n# pidfile\r\nPIDFILE=\/var\/run\/\\${NAME}.pid\r\n# Additional options that are passed to the Daemon.\r\nDAEMON_OPTS=&quot;-c \\$CONFIGFILE&quot;\r\n[ -x \\$DAEMON ] || exit 0\r\n[ -f \\$CONFIGFILE ] || exit 0\r\ncheckpid() {\r\n[ -f \\$PIDFILE ] || return 1\r\npid=\\`cat \\$PIDFILE\\`\r\n[ -d \/proc\/\\$pid ] &amp;&amp; return 0\r\nreturn 1\r\n}\r\ncase &quot;\\${1}&quot; in\r\nstart)\r\necho -n &quot;Starting \\${DESC}: &quot;\r\nstart-stop-daemon --start --quiet --pidfile \\$PIDFILE \\\r\n--chuid \\$USER --background --make-pidfile \\\r\n--exec \\$DAEMON -- \\$DAEMON_OPTS\r\necho &quot;\\${NAME}.&quot;\r\n;;\r\nstop)\r\necho -n &quot;Stopping \\${DESC}: &quot;\r\nstart-stop-daemon --stop --quiet --pidfile \\$PIDFILE \\\r\n--oknodo\r\necho &quot;\\${NAME}.&quot;\r\n;;\r\nrestart|force-reload)\r\necho -n &quot;Restarting \\${DESC}: &quot;\r\nstart-stop-daemon --stop --quiet --pidfile \\$PIDFILE \\\r\n--oknodo\r\nsleep 1\r\nstart-stop-daemon --start --quiet --pidfile \\$PIDFILE \\\r\n--chuid \\$USER --background --make-pidfile \\\r\n--exec \\$DAEMON -- \\$DAEMON_OPTS\r\necho &quot;\\${NAME}.&quot;\r\n;;\r\n*)\r\nN=\/etc\/init.d\/\\$NAME\r\necho &quot;Usage: \\$NAME {start|stop|restart|force-reload}&quot; &gt;&amp;2\r\nexit 1\r\n;;\r\nesac\r\nexit 0\r\nEOF\r\n\r\necho -e &quot;* Security Init File&quot;\r\nsudo mv ~\/$OE_CONFIG \/etc\/init.d\/$OE_CONFIG\r\nsudo chmod 755 \/etc\/init.d\/$OE_CONFIG\r\nsudo chown root: \/etc\/init.d\/$OE_CONFIG\r\n\r\necho -e &quot;* Change default xmlrpc port&quot;\r\nsudo su root -c &quot;echo &#039;xmlrpc_port = $OE_PORT&#039; &gt;&gt; \/etc\/${OE_CONFIG}.conf&quot;\r\n\r\necho -e &quot;* Start ODOO on Startup&quot;\r\nsudo update-rc.d $OE_CONFIG defaults\r\n\r\necho -e &quot;* Starting Odoo Service&quot;\r\nsudo su root -c &quot;\/etc\/init.d\/$OE_CONFIG start&quot;\r\necho &quot;-----------------------------------------------------------&quot;\r\necho &quot;Done! The Odoo server is up and running. Specifications:&quot;\r\necho &quot;Port: $OE_PORT&quot;\r\necho &quot;User service: $OE_USER&quot;\r\necho &quot;User PostgreSQL: $OE_USER&quot;\r\necho &quot;Code location: $OE_USER&quot;\r\necho &quot;Addons folder: $OE_USER\/$OE_CONFIG\/addons\/&quot;\r\necho &quot;Start Odoo service: sudo service $OE_CONFIG start&quot;\r\necho &quot;Stop Odoo service: sudo service $OE_CONFIG stop&quot;\r\necho &quot;Restart Odoo service: sudo service $OE_CONFIG restart&quot;\r\necho &quot;-----------------------------------------------------------&quot;<\/pre>\n<h2>5. Make the File Executable<\/h2>\n<p>After you create the file, in order to run the script we need to make the file executable with the following command:<\/p>\n<pre>chmod +x odoo_install.sh<\/pre>\n<h2>6. Run the Script<\/h2>\n<p>Now we can run the script and wait until Odoo 10 is fully installed.<\/p>\n<pre>.\/odoo_install.sh<\/pre>\n<h2>7. Configure Odoo<\/h2>\n<p>Edit the Odoo configuration file and set the master admin password:<\/p>\n<pre>nano \/etc\/odoo-server.conf<\/pre>\n<pre>admin_passwd = UseStrongPassw0rd<\/pre>\n<p>Don\u2019t forget to replace \u2018UseStrongPassw0rd\u2019 with an actual strong password.<\/p>\n<h2>8. Restart Odoo<\/h2>\n<p>Restart Odoo for the changes to take effect:<\/p>\n<pre>\/etc\/init.d\/odoo-server restart<\/pre>\n<p>To access your Odoo, open your browser and navigate to http:\/\/your-server-IP:8069. Initially, you would be asked to create a new database.<\/p>\n<p>Once the database is created, you will get redirected to the admin panel from where you can log in as the admin user.<\/p>\n<p>After successfully logging in you can start using your Odoo 10 and configure it to your needs, install additional modules etc.<\/p>\n<h2>9. Setting up a Reverse Proxy<\/h2>\n<p>In order to access your Odoo application only by using your domain name, without the port number in the URL, we need to set up <a href=\"https:\/\/www.rosehosting.com\/nginx-hosting.html\">Nginx<\/a> as a reverse proxy.<\/p>\n<p>Before installing the Nginx web server, make sure that there is no other web server like Apache installed on the VPS. If Apache web server is running, stop it:<\/p>\n<pre>systemctl stop apache2<\/pre>\n<p>and remove it from your VPS:<\/p>\n<pre>apt-get purge apache2*\r\napt autoremove<\/pre>\n<p>Now, run the following command to install Nginx:<\/p>\n<pre>apt-get install nginx<\/pre>\n<p>Once it is installed, start the web server and enable it to start on boot:<\/p>\n<pre>systemctl start nginx\r\nsystemctl enable nginx<\/pre>\n<p>You can check if Nginx is successfully started using the following command:<\/p>\n<pre>systemctl status nginx<\/pre>\n<p>The output of the command above should be similar to this:<\/p>\n<pre>\u25cf nginx.service - A high performance web server and a reverse proxy server\r\n   Loaded: loaded (\/lib\/systemd\/system\/nginx.service; enabled; vendor preset: enabled)\r\n   Active: active (running)\r\n Main PID: 4062 (nginx)\r\n   CGroup: \/system.slice\/nginx.service\r\n           \u251c\u25004062 nginx: master process \/usr\/sbin\/nginx -g daemon on; master_process on\r\n           \u251c\u25004063 nginx: worker process\r\n           \u2514\u25004064 nginx: worker process<\/pre>\n<p>You can also verify if Nginx is running, by accessing <code>http:\/\/YOUR_IP<\/code> in your favorite web browser.<\/p>\n<p>Create a new Nginx server block with the following content:<\/p>\n<pre>nano \/etc\/nginx\/sites-available\/my-odoo-site.com<\/pre>\n<pre>upstream odoo {\r\n    server 127.0.0.1:8069;\r\n}\r\n\r\nserver {\r\n    listen      80 default;\r\n    server_name my-odoo-site.com;\r\n\r\n    access_log  \/var\/log\/nginx\/odoo.access.log;\r\n    error_log   \/var\/log\/nginx\/odoo.error.log;\r\n\r\n    proxy_buffers 16 64k;\r\n    proxy_buffer_size 128k;\r\n\r\n    location \/ {\r\n        proxy_pass  http:\/\/odoo;\r\n        proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;\r\n        proxy_redirect off;\r\n\r\n        proxy_set_header    Host            $host;\r\n        proxy_set_header    X-Real-IP       $remote_addr;\r\n        proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;\r\n        proxy_set_header    X-Forwarded-Proto https;\r\n    }\r\n\r\n    location ~* \/web\/static\/ {\r\n        proxy_cache_valid 200 60m;\r\n        proxy_buffering on;\r\n        expires 864000;\r\n        proxy_pass http:\/\/odoo;\r\n    }\r\n}<\/pre>\n<p>Activate the server block by creating a symbolic link :<\/p>\n<pre>ln -s \/etc\/nginx\/sites-available\/my-odoo-site.com \/etc\/nginx\/sites-enabled\/my-odoo-site.com<\/pre>\n<p>Delete the default configuration:<\/p>\n<pre>rm -f \/etc\/nginx\/sites-enabled\/default<\/pre>\n<p>Test the Nginx configuration and restart nginx:<\/p>\n<pre>nginx -t\r\nservice nginx restart<\/pre>\n<p>That\u2019s it. If you followed all of the instructions properly you can now access your Odoo 10 using your domain name.<\/p>\n<hr \/>\n<p>Of course you don\u2019t have to install Odoo 10 on Ubuntu 16.04 with Nginx as a reverse proxy, if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\">managed cloud hosting<\/a> services, in which case you can simply ask our expert Linux admins to to install Odoo 10 on Ubuntu 16.04 with Nginx as a reverse proxy, for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you liked this post, on how to\u00a0install Odoo 10 on Ubuntu 16.04 with Nginx as a reverse proxy, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We&#8217;ll show you, How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy. Odoo is one of the most popular and most powerful Open Source ERP business software based on the Python programming language. In this tutorial, we will show you how to install Odoo 10 on an Ubuntu 16.04 VPS &#8230; <a title=\"How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/\" aria-label=\"More on How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":695,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[132,128,129,130],"class_list":["post-694","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-linuxcloudvps","tag-nginx","tag-odoo","tag-reverse-proxy"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"We&#039;ll show you, How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy. Odoo is one of the most popular and most powerful Open Source ERP\" \/>\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.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"We&#039;ll show you, How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy. Odoo is one of the most popular and most powerful Open Source ERP\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-12T08:33:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-31T14:56:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Install-Odoo-10-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy\",\"datePublished\":\"2018-01-12T08:33:43+00:00\",\"dateModified\":\"2018-01-31T14:56:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\\\/\"},\"wordCount\":661,\"commentCount\":8,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/How-to-Install-Odoo-10-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg\",\"keywords\":[\"linuxcloudvps\",\"nginx\",\"odoo\",\"reverse proxy\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\\\/\",\"name\":\"How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/How-to-Install-Odoo-10-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg\",\"datePublished\":\"2018-01-12T08:33:43+00:00\",\"dateModified\":\"2018-01-31T14:56:21+00:00\",\"description\":\"We'll show you, How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy. Odoo is one of the most popular and most powerful Open Source ERP\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/How-to-Install-Odoo-10-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/01\\\/How-to-Install-Odoo-10-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg\",\"width\":600,\"height\":300,\"caption\":\"How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy | LinuxCloudVPS Blog","description":"We'll show you, How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy. Odoo is one of the most popular and most powerful Open Source ERP","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.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy | LinuxCloudVPS Blog","og_description":"We'll show you, How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy. Odoo is one of the most popular and most powerful Open Source ERP","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2018-01-12T08:33:43+00:00","article_modified_time":"2018-01-31T14:56:21+00:00","og_image":[{"width":600,"height":300,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Install-Odoo-10-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy","datePublished":"2018-01-12T08:33:43+00:00","dateModified":"2018-01-31T14:56:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/"},"wordCount":661,"commentCount":8,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Install-Odoo-10-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg","keywords":["linuxcloudvps","nginx","odoo","reverse proxy"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/","name":"How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Install-Odoo-10-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg","datePublished":"2018-01-12T08:33:43+00:00","dateModified":"2018-01-31T14:56:21+00:00","description":"We'll show you, How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy. Odoo is one of the most popular and most powerful Open Source ERP","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Install-Odoo-10-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Install-Odoo-10-on-Ubuntu-16.04-with-Nginx-as-a-Reverse-Proxy.jpg","width":600,"height":300,"caption":"How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-odoo-10-on-ubuntu-16-04-with-nginx-as-a-reverse-proxy\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Odoo 10 on Ubuntu 16.04 with Nginx as a Reverse Proxy"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/694","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=694"}],"version-history":[{"count":2,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/694\/revisions"}],"predecessor-version":[{"id":697,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/694\/revisions\/697"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/695"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=694"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=694"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=694"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}