Playbooks to a new Lilik
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
526 B

  1. root /usr/share/wordpress;
  2. index index.php;
  3. location /wp-content/ {
  4. alias /srv/www/wp-content/$host/;
  5. }
  6. location ~ \.php$ {
  7. include snippets/fastcgi-php.conf;
  8. fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
  9. }
  10. #deny access to .htaccess files, if Apache's document root
  11. #concurs with nginx's one
  12. location ~ /\.ht {
  13. deny all;
  14. }
  15. location /files {
  16. rewrite ^/files/(.+) /wp-includes/ms-files.php?file=$1 break;
  17. }
  18. location / {
  19. if (-e $request_filename){
  20. rewrite ^(.*)$ /index.php break;
  21. }
  22. }