Important
We are updating the images for OroCommerce version 6.1 to align with the latest changes in the back-office design. During this transition, some images may still show older versions. Thank you for your patience as we work to update all visuals to reflect these changes.
Web Server Configuration
The default setup of the Sales Frontend application assumes that it is located on the same host as the OroCommerce application.
Below is an example of a configuration snippet for the Nginx web server:
# Must be located before the location blocks which responsible for serving PHP files and websocket connections.
location ~ ^/sales-frontend/? {
index "index.html";
try_files $uri $uri/ /sales-frontend/index.html;
}
The configuration above assumes that the compiled Sales Frontend application (i.e., the result of pnpm build
, by default located in the dist/ directory) is located at the public/sales-frontend/ directory of the OroCommerce application.