We assume that:
You are working on a development machine (laptop, virtual machine, or similar).
Additional tasks might be required to deploy multiple websites in a hosted environment; check with your hosting provider for more information.
Additional tasks are required to set up Adobe Commerce on cloud infrastructure. After you complete the tasks discussed in this topic, see Set up multiple websites or stores in the Commerce on Cloud Infrastructure guide.
You accept multiple domains in one virtual host file or use one virtual host per website; the virtual host configuration files are located in /etc/nginx/sites-available
.
You use the nginx.conf.sample
provided by Commerce with only the modifications discussed in this tutorial.
The Commerce software is installed in /var/www/html/magento2
.
You have two websites other than the default:
french.mysite.mg
with website code french
and store view code fr
german.mysite.mg
with website code german
and store view code de
mysite.mg
is the default website and default store viewRefer to Create websites and Create store views for help with locating these values.
The following is a roadmap for setting up multiple websites with nginx:
Set up websites, stores, and store views in the Admin.
Create an Nginx virtual host) to map many websites or one Nginx virtual host per Commerce website (steps detailed below).
Pass the values of the MAGE variables $MAGE_RUN_TYPE
and $MAGE_RUN_CODE
to nginx using the Magento-provided nginx.conf.sample
(steps detailed below).
$MAGE_RUN_TYPE
can be either store
or website
:
website
to load your website in your storefront.store
to load any store view in your storefront.$MAGE_RUN_CODE
is the unique website or store view code that corresponds to $MAGE_RUN_TYPE
.
Update the Base URL configuration on the Commerce admin.
See Set up multiple websites, stores, and store views in the Admin.
This step discusses how to load websites on the storefront. You can use either websites or store views; if you use store views, you must adjust parameter values accordingly. You must complete the tasks in this section as a user with sudo
privileges.
By using just one nginx virtual host file, you can keep your nginx configuration simple and clean. By using several virtual host files, you can customize each store (to use a custom location for french.mysite.mg
for instance).
To create one virtual host (simplified):
This configuration expands upon nginx configuration.
Open a text editor and add the following contents to a new file named /etc/nginx/sites-available/magento
:
map $http_host $MAGE_RUN_CODE {
default '';
french.mysite.mg french;
german.mysite.mg german;
}
server {
listen 80;
server_name mysite.mg french.mysite.mg german.mysite.mg;
set $MAGE_ROOT /var/www/html/magento2;
set $MAGE_MODE developer;
set $MAGE_RUN_TYPE website; #or set $MAGE_RUN_TYPE store;
include /var/www/html/magento2/nginx.conf;
}
Save your changes to the files and exit the text editor.
Verify the server configuration:
nginx -t
If successful, the following message displays:
nginx: configuration file /etc/nginx/nginx.conf test is successful
If errors display, check the syntax of your virtual host configuration files.
Create symbolic link in the /etc/nginx/sites-enabled
directory:
cd /etc/nginx/sites-enabled
ln -s /etc/nginx/sites-available/magento magento
For more detail about the map directive, see nginx documentation on the map directive.
To create multiple virtual hosts:
Open a text editor and add the following contents to a new file named /etc/nginx/sites-available/french.mysite.mg
:
server {
listen 80;
server_name french.mysite.mg;
set $MAGE_ROOT /var/www/html/magento2;
set $MAGE_MODE developer;
set $MAGE_RUN_TYPE website; #or set $MAGE_RUN_TYPE store;
set $MAGE_RUN_CODE french;
include /var/www/html/magento2/nginx.conf;
}
Create another file named german.mysite.mg
in the same directory with the following contents:
server {
listen 80;
server_name german.mysite.mg;
set $MAGE_ROOT /var/www/html/magento2;
set $MAGE_MODE developer;
set $MAGE_RUN_TYPE website; #or set $MAGE_RUN_TYPE store;
set $MAGE_RUN_CODE german;
include /var/www/html/magento2/nginx.conf;
}
Save your changes to the files and exit the text editor.
Verify the server configuration:
nginx -t
If successful, the following message displays:
nginx: configuration file /etc/nginx/nginx.conf test is successful
If errors display, check the syntax of your virtual host configuration files.
Create symbolic links in the /etc/nginx/sites-enabled
directory:
cd /etc/nginx/sites-enabled
ln -s /etc/nginx/sites-available/french.mysite.mg french.mysite.mg
ln -s /etc/nginx/sites-available/german.mysite.mg german.mysite.mg
Do not edit the nginx.conf.sample
file; it is a core Commerce file that may be updated with each new release. Instead, copy the nginx.conf.sample
file, rename it, and then edit the copied file.
To edit the PHP entry point for the main application:
To modify the nginx.conf.sample
file**:
Open a text editor and review the nginx.conf.sample
file ,<magento2_installation_directory>/nginx.conf.sample
. Look for the following section:
# PHP entry point for main application
location ~ (index|get|static|report|404|503|health_check)\.php$ {
try_files $uri =404;
fastcgi_pass fastcgi_backend;
fastcgi_buffers 1024 4k;
fastcgi_param PHP_FLAG "session.auto_start=off \n suhosin.session.cryptua=off";
fastcgi_param PHP_VALUE "memory_limit=1G \n max_execution_time=18000";
fastcgi_read_timeout 600s;
fastcgi_connect_timeout 600s;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
Update the nginx.conf.sample
file with the following two lines before the include statement:
fastcgi_param MAGE_RUN_TYPE $MAGE_RUN_TYPE;
fastcgi_param MAGE_RUN_CODE $MAGE_RUN_CODE;
An example updated PHP entry point for the main application looks like:
# PHP entry point for main application
location ~ (index|get|static|report|404|503|health_check)\.php$ {
try_files $uri =404;
fastcgi_pass fastcgi_backend;
fastcgi_buffers 1024 4k;
fastcgi_param PHP_FLAG "session.auto_start=off \n suhosin.session.cryptua=off";
fastcgi_param PHP_VALUE "memory_limit=1G \n max_execution_time=18000";
fastcgi_read_timeout 600s;
fastcgi_connect_timeout 600s;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
# START - Multisite customization
fastcgi_param MAGE_RUN_TYPE $MAGE_RUN_TYPE;
fastcgi_param MAGE_RUN_CODE $MAGE_RUN_CODE;
# END - Multisite customization
include fastcgi_params;
}
You must update the Base URL for the french
and the german
websites in the Commerce admin.
french
website.http://french.magento24.com/
.https://french.magento24.com/
.german
website.http://german.magento24.com/
.https://german.magento24.com/
.Run the following command to clean the config
and full_page
caches.
bin/magento cache:clean config full_page
Unless you have DNS set up for your stores’ URLs, you must add a static route to the host in your hosts
file:
Locate your operating system hosts
file.
Add the static route in the format:
<ip-address> french.mysite.mg
<ip-address> german.mysite.mg
Go to one of the following URLs in your browser:
http://mysite.mg/admin
http://french.mysite.mg/frenchstoreview
http://german.mysite.mg/germanstoreview