Hi,
Got my lifetime DBSEO license and am planning for the upgrade, but was wondering if anyone else yet has implemented it on nginx/php-fpm? Apache is way too slow for my site, thus migrated to niginx. Vbseo works on that, can i use the same rules for the dbseo.php?
These are my settings for vbseo:
Got my lifetime DBSEO license and am planning for the upgrade, but was wondering if anyone else yet has implemented it on nginx/php-fpm? Apache is way too slow for my site, thus migrated to niginx. Vbseo works on that, can i use the same rules for the dbseo.php?
These are my settings for vbseo:
Code:
location /forum/ {
rewrite ^/forum/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /forum/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 last;
try_files $uri $uri/ /forum/vbseo.php?$args;
if (-f $request_filename) {
expires 30d;
break;
}
if ($request_filename ~ "\.php$" ) {
rewrite ^(/forum/.*)$ /forum/vbseo.php last;
}
if (!-e $request_filename) {
rewrite ^/forum/(.*)$ /forum/vbseo.php last;
}
}
location ~ /forum/(.*\.php)$ {
rewrite ^/forum/(.*)$ /forum/vbseo.php last;
}