Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 536 Bytes

File metadata and controls

23 lines (18 loc) · 536 Bytes

Apache

{% hint style="info" %} The document root must always point to the public folder, to ensure all functionality works. {% endhint %}

<VirtualHost *:80>
   ServerName "HOST_NAME"
   DocumentRoot _SHOPWARE_LOCATION_/public

   <Directory _SHOPWARE_LOCATION_>
      Options Indexes FollowSymLinks MultiViews
      AllowOverride All
      Order allow,deny
      allow from all
   </Directory>

   ErrorLog ${APACHE_LOG_DIR}/shopware.error.log
   CustomLog ${APACHE_LOG_DIR}/shopware.access.log combined
</VirtualHost>