wordpress nginx conf dosyası

WordPress için Nginx/PHP/Ubuntu üzerinde derlediğim kodlar server parametlerini kurduktan sonra php7 yahut php5 fark etmeden sitenizi korumaya yarar. 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)$ { expires max; log_not_found off; access_log off; tcp_nodelay off; open_file_cache max=1000 inactive=120s; open_file_cache_valid 45s; open_file_cache_min_uses 2; open_file_cache_errors off; } location / { try_files $uri $uri/ /index.php?$args; } location ~ … Okuyun…