Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- server {
- listen *:80;
- server_name iontecs.local;
- root /var/www/iontecs;
- index index.php;
- location / {
- try_files $uri $uri/ /index.php?$args;
- }
- rewrite /wp-admin$ $scheme://$host$uri/ permanent;
- location ~* /(.*\.pdf) {
- types { application/octet-stream .pdf; }
- default_type application/octet-stream;
- }
- location ~* ^.+\.(ogg|ogv|svg|svgz|eot|otf|woff|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;
- }
- location ~ [^/]\.php(/|$) {
- fastcgi_split_path_info ^(.+?\.php)(/.*)$;
- if (!-f $document_root$fastcgi_script_name) {
- return 404;
- }
- include fastcgi.conf;
- fastcgi_buffers 16 16k;
- fastcgi_buffer_size 32k;
- fastcgi_index index.php;
- fastcgi_pass unix:/run/php56-fpm/php-fpm.sock;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement