Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

21 lignes
431 B

  1. server {
  2. listen 80 default_server;
  3. root /var/www/wx;
  4. index index.php index.html index.htm index.nginx-debian.html;
  5. autoindex on;
  6. server_name wx.home;
  7. location / {
  8. try_files $uri $uri/ =404;
  9. }
  10. location ~ \.php$ {
  11. include snippets/fastcgi-php.conf;
  12. fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
  13. }
  14. # Rewrite the old path yyyy/mm/dd/ to /images/
  15. rewrite "^/image/\d{4}/\d{2}/\d{2}/(.+)$" /images/$1 permanent;
  16. }