Nombreux sont ceux d’entre vous qui souhaitent faire fonctionner une boutique e-commerce sur un serveur performant utilisant Nginx.
Seulement, aujourd’hui aucune configuration officielle n’a été partagée par PrestaShop. C’est pourquoi de multiples configurations différentes sont partagées en ligne, mais la plupart d’entre elles ne sont pas complètes ou adaptées à chaque installation.
C’est pourquoi nous vous partageons aujourd’hui notre template de configuration Nginx pour PrestaShop. Ce template est voué à évoluer et si vous souhaitez disposer de la dernière version en date rendez-vous sur le GitHub de notre COO.
Configurer un vHost Nginx pour Prestashop 1.7
Voici le template que vous pouvez utiliser, tout en modifiant les variables :
- {domain}
- {directory}
- {admin-directory}
Si vous ne savez pas, ou n’arrivez pas à intégrer cette configuration, contactez-nous afin que nous le fassions à votre place.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
############### # HTTPS VHOST # ############### server { ###################### # REGULAR PARAMETERS # ###################### server_name {domain}; root {directory}; index index.php; listen [::]:443 ssl ipv6only=on; listen 443 ssl; # Comment this if you are not using Certbot ssl_certificate /etc/letsencrypt/live/{domain}/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/{domain}/privkey.pem; include /etc/letsencrypt/options-ssl-nginx.conf; ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; error_log /var/log/nginx/{domain}.error; ######################## # LOCATION DIRECTIVES # ######################## # PHP Status monitor, uncomment if needed (you have to enable it in your PHP-FPM pool config) # location ~ ^/(status|ping)$ { # allow 127.0.0.1; # fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # fastcgi_index index.php; # include fastcgi_params; # fastcgi_pass unix:/run/php/php7.3-fpm.sock; # } # Change this to your default admin path (for ex. /admin-mywebsite ; prefix the URL with a "/") set $admin_dir {admin-directory}; # Symfony controllers location ~ /(international|sell|improve|_profiler|module|product|feature|attribute|supplier|combination|specific-price|configure)/(.*)$ { try_files $uri $uri/ /index.php?q=$uri&$args $admin_dir/index.php$is_args$args; } # Default locations location / { try_files $uri $uri/ /index.php$uri&$args; } # Use only one of the following php location according to your PHP configuration location ~ [^/]\.php(/|$) { # Verify that the file exists, redirect to index if not try_files $fastcgi_script_name /index.php$uri&$args =404; fastcgi_index index.php; # Environment variables for PHP fastcgi_split_path_info ^(.+\.php)(/.+)$; include fastcgi_params; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # Optimized for CloudFlare CDN, if you are not using it you can increase theses variables according to your needs fastcgi_keep_conn on; fastcgi_read_timeout 100s; fastcgi_send_timeout 100s; client_max_body_size 20M; fastcgi_max_temp_file_size 0; fastcgi_temp_file_write_size 512k; # Change this for your PHP socket fastcgi_pass unix:/run/php/php7.3-fpm.sock; } # If the PHP directive from the top didn't work, use the following one: # location ~ \.php$ { # try_files $uri =404; # fastcgi_split_path_info ^(.+\.php)(/.+)$; # fastcgi_pass unix:/run/php/php7.3-fpm.sock; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # include fastcgi_params; # } location ~* \.(eot|otf|ttf|woff|woff2)$ { add_header Access-Control-Allow-Origin *; } location ~* ^.+\.(css|js|ogg|ogv|svg|svgz|eot|otf|woff|woff2|mp4|ttf|rss|atom|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ { access_log off; log_not_found off; expires max; add_header Pragma public; add_header Cache-Control "public, must-revalidate, proxy-revalidate"; } location ~* \.(pdf)$ { expires 30d; } location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { allow all; log_not_found off; access_log off; } # File security # .htaccess .DS_Store .htpasswd etc location ~ /\. { deny all; } # Source code directories location ~ ^/(app|bin|cache|classes|config|controllers|docs|localization|override|src|tests|tools|translations|travis-scripts|vendor|var)/ { deny all; } location ~ \.(htaccess|yml|log|twig|sass|git|tpl)$ { deny all; } # vendor in modules directory location ~ ^/modules/.*/vendor/ { deny all; } # Prevent exposing other sensitive files location ~ \.(yml|log|tpl|twig|sass)$ { deny all; } # Prevent injection of php files location /upload { location ~ \.php$ { deny all; } } location /img { location ~ \.php$ { deny all; } } ###################### # REWRITE DIRECTIVES # ###################### # Uncomment & edit this if you are using multilanguage (preset for french here) # rewrite ^/fr$ /fr/ redirect; # rewrite ^/fr/(.*) /$1; # Rewrite for admin directory location $admin_dir/ { if (!-e $request_filename) { rewrite ^/.*$ $admin_dir/index.php last; } } # Images rewrite ^/([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+.jpg$ /img/p/$1/$1$2$3.jpg last; rewrite ^/([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+.jpg$ /img/p/$1/$2/$1$2$3$4.jpg last; rewrite ^/([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+.jpg$ /img/p/$1/$2/$3/$1$2$3$4$5.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+.jpg$ /img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+.jpg$ /img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg last; rewrite ^/c/([0-9]+)(-[.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+.jpg$ /img/c/$1$2$3.jpg last; rewrite ^/c/([a-zA-Z_-]+)(-[0-9]+)?/.+.jpg$ /img/c/$1$2.jpg last; # AlphaImageLoader for IE and fancybox rewrite ^images_ie/?([^/]+)\.(jpe?g|png|gif)$ js/jquery/plugins/fancybox/images/$1.$2 last; # Web service API rewrite ^/api/?(.*)$ /webservice/dispatcher.php?url=$1 last; # Installation sandbox rewrite ^(/install(?:-dev)?/sandbox)/(.*) /$1/test.php last; # Products and regular pages rewrite "^/([0-9]+)\-(\P{M}\p{M}*)+\.html(.*)$" /index.php?controller=product&id_product=$1$3 last; rewrite "^/([0-9]+)\-([a-zA-Z0-9-]*)(.*)$" /index.php?controller=category&id_category=$1$3 last; rewrite "^/([a-zA-Z0-9-]*)/([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$" /index.php?controller=product&id_product=$2$4 last; rewrite "^/([0-9]+)__([a-zA-Z0-9-]*)(.*)$" /index.php?controller=supplier&id_supplier=$1$3 last; rewrite "^/([0-9]+)_([a-zA-Z0-9-]*)(.*)$" /index.php?controller=manufacturer&id_manufacturer=$1$3 last; rewrite "^/content/([0-9]+)\-([a-zA-Z0-9-]*)(.*)$" /index.php?controller=cms&id_cms=$1$3 last; rewrite "^/content/category/([0-9]+)\-([a-zA-Z0-9-]*)(.*)$" /index.php?controller=cms&id_cms_category=$1$3 last; rewrite "^/module/([_a-zA-Z0-9-]*)/([_a-zA-Z0-9-]*)$" /index.php?fc=module&module=$1&controller=$2 last; # EN rewrites rewrite ^/address$ /index.php?controller=address last; rewrite ^/addresses$ /index.php?controller=addresses last; rewrite ^/authentication$ /index.php?controller=authentication last; rewrite ^/best-sales$ /index.php?controller=best-sales last; rewrite ^/brand$ /index.php?controller=manufacturer last; rewrite ^/brand/([0-9]+)\-([a-zA-Z0-9-]*)(.*)$ /index.php?id_manufacturer=$1&controller=manufacturer; rewrite ^/cart$ /index.php?controller=cart last; rewrite ^/contact-us$ /index.php?controller=contact-form last; rewrite ^/discount$ /index.php?controller=discount last; rewrite ^/guest-tracking$ /index.php?controller=guest-tracking last; rewrite ^/identity$ /index.php?controller=identity last; rewrite ^/manufacturers$ /index.php?controller=manufacturer last; rewrite ^/my-account$ /index.php?controller=my-account last; rewrite ^/new-products$ /index.php?controller=new-products last; rewrite ^/new-products$ /index.php?controller=new-products last; rewrite ^/order$ /index.php?controller=order last; rewrite ^/order-follow$ /index.php?controller=order-follow last; rewrite ^/order-follow$ /index.php?controller=order-follow last; rewrite ^/order-history$ /index.php?controller=history last; rewrite ^/order-slip$ /index.php?controller=order-slip last; rewrite ^/page-not-found$ /index.php?controller=404 last; rewrite ^/password-recovery$ /index.php?controller=password last; rewrite ^/quick-order$ /index.php?controller=order-opc last; rewrite ^/search$ /index.php?controller=search last; rewrite ^/stores$ /index.php?controller=stores last; rewrite ^/supplier$ /index.php?controller=supplier last; # FR rewrites rewrite ^/adresse$ /index.php?controller=address last; rewrite ^/adresses$ /index.php?controller=addresses last; rewrite ^/avoirs$ /index.php?controller=order-slip last; rewrite ^/commande$ /index.php?controller=order last; rewrite ^/commande-rapide$ /index.php?controller=order-opc last; rewrite ^/comparaison-produits$ /index.php?controller=products-compare last; rewrite ^/confirmation-commande$ /index.php?controller=order-confirmation last; rewrite ^/connexion$ /index.php?controller=authentication last; rewrite ^/fabricants$ /index.php?controller=manufacturer last; rewrite ^/fournisseur$ /index.php?controller=supplier last; rewrite ^/fournisseurs$ /index.php?controller=supplier last; rewrite ^/historique-commandes$ /index.php?controller=history last; rewrite ^/identite$ /index.php?controller=identity last; rewrite ^/magasins$ /index.php?controller=stores last; rewrite ^/meilleures-ventes$ /index.php?controller=best-sales last; rewrite ^/mon-compte$ /index.php?controller=my-account last; rewrite ^/nous-contacter$ /index.php?controller=contact-form last; rewrite ^/nouveaux-produits$ /index.php?controller=new-products last; rewrite ^/page-introuvable$ /index.php?controller=404 last; rewrite ^/panier$ /index.php?controller=cart last; rewrite ^/plan-site$ /index.php?controller=sitemap last; rewrite ^/promotion$ /index.php?controller=discount last; rewrite ^/promotions$ /index.php?controller=prices-drop last; rewrite ^/recherche$ /index.php?controller=search last; rewrite ^/recuperation-mot-de-passe$ /index.php?controller=password last; rewrite ^/reduction$ /index.php?controller=discount last; rewrite ^/sitemap$ /index.php?controller=sitemap last; rewrite ^/suivi-commande$ /index.php?controller=order-follow last; rewrite ^/suivi-commande-invite$ /index.php?controller=guest-tracking last; } ################# # HTTP REDIRECT # ################# server { server_name {domain}; if ($host = {domain}) { return 301 https://$host$request_uri; } listen 80; listen [::]:80; return 404; } |
Si vous rencontrez des soucis pour intégrer cette solution, ou que vous souhaitez pousser encore plus l’optimisation de votre PrestaShop, contactez notre équipe d’experts. Nous disposons d’autres techniques que nous avons développées en interne qui pourront vous aider à booster la rapidité de votre site.
Acinonyx Hosting – hébergement web performant
Vous ne souhaitez pas vous encombrer de toute la partie technique ? Alors faites appel à notre service d’hébergement web bulletproof, spécialisé dans la configuration/maintenance de serveurs ultra-performants, en plus d’assurer une compatibilité avec tous les CMS tels que PrestaShop & WordPress.
Spécifications de votre projet
Suivez les différentes étapes pour générer le cahier des charges de votre projet
Félicitations, nous vous avons envoyé vos spécifications par e-mail et nous vous répondrons sous peu!
A propos de votre projet
Quel est l'objectif de votre projet?
Optimisation du serveur
Que voulez-vous optimiser ?
Configuration du serveur
Quelles fonctionnalités aimeriez-vous que nous implémentions?
Parlez-nous de votre serveur
Nous avons besoin de connaître les spécifications de votre serveur pour savoir comment nous pourrions vous aider
Quel est son système d'exploitation, CPU, RAM & capacité de lecteur etc. Et aussi les paquets que vous avez installés (Apache, Nginx, PHP ...). Si vous n'avez pas encore de serveur, veuillez nous en informer.
Votre cahier des charges a été généré
Votre projet est estimé à:
Summary
Description | Information | Quantité | Prix |
---|---|---|---|
Discount : | |||
Total : |