Skip to content

Instantly share code, notes, and snippets.

@hn-support
Last active February 22, 2019 09:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hn-support/837709781ed8f52f53bf07ed5c55dede to your computer and use it in GitHub Desktop.
Save hn-support/837709781ed8f52f53bf07ed5c55dede to your computer and use it in GitHub Desktop.
Example Shopware Nginx rewrites
###General rewrites
location @shopware {
rewrite / /shopware.php;
}
# use shopware.php as index.php
location ~ ^/ {
# rewrite / /shopware.php;
index shopware.php index.php;
try_files $uri $uri/ /shopware.php$is_args$args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment