Jump to content
xt:Commerce Community Forum

nginx Konfiguration


Recommended Posts

Hallo,

hat jemand vielleicht eine funktionierende Konfiguration um xtCommerce auf nginx laufen zu lassen (ohne Proxymodus mit Apache)?
Ich habe schon eine Konfiguraiton, die von Plesk mit dem integrierten Konverter erstellt wurde und die für den Shop selber wohl (anscheinend) auch funktioniert aber das Backenend über xtAdmin funktioniert dann nicht mehr.

Die Konfiguration sieht dann aktuell so aus:

if ($uri !~* "^.*\.(ico|jpe?g|png|gif|webp|swf|css|js|woff|woff2|eof|ttf)$"){
    set $rule_0 1$rule_0;
}
if ($uri !~ "^/media/"){
    set $rule_0 2$rule_0;
}
if ($uri !~ "^/xtAdmin/"){
    set $rule_0 3$rule_0;
}
if (!-f $request_filename){
    set $rule_0 4$rule_0;
}
if (!-d $request_filename){
    set $rule_0 5$rule_0;
}
if ($request_filename !~ "-l"){
    set $rule_0 6$rule_0;
}
if ($rule_0 = "654321"){
    rewrite /.* /index.php;
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
  • Create New...