Status
Not open for further replies.

Holden

Customer
Hello,


I run NGINX on my server and because of that .htaccess files won't work unless you edit it in /etc/nginx/conf.d/psupdates.com.conf

Here the error

fdb00b25ae.png



Here my config from /etc/nginx/conf.d/psupdates.com.conf

Code:
server {
    server_name psupdates.com www.psupdates.com;
    root /var/www/psupdates.com;
    include php;
    access_log  /var/www/psupdates.com-access.log;
    error_log  /var/www/psupdates.com-error.log;   
   
      
location ^~ /management {
auth_basic	"Restricted";
auth_basic_user_file	/var/www/.ps;
location ~ \.php {
                fastcgi_param  QUERY_STRING       $query_string;
                fastcgi_param  REQUEST_METHOD     $request_method;
                fastcgi_param  CONTENT_TYPE       $content_type;
                fastcgi_param  CONTENT_LENGTH     $content_length;
                fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
                fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
                fastcgi_param  REQUEST_URI        $request_uri;
                fastcgi_param  DOCUMENT_URI       $document_uri;
                fastcgi_param  DOCUMENT_ROOT      $document_root;
                fastcgi_param  SERVER_PROTOCOL    $server_protocol;
                fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
                fastcgi_param  SERVER_SOFTWARE    nginx;

                fastcgi_param  REMOTE_ADDR        $remote_addr;
                fastcgi_param  REMOTE_PORT        $remote_port;
                fastcgi_param  SERVER_ADDR        $server_addr;
                fastcgi_param  SERVER_PORT        $server_port;
                fastcgi_param  SERVER_NAME        $server_name;
                fastcgi_intercept_errors on;
                fastcgi_pass 127.0.0.1:9000;
				
} 
}
   
      
    location / {

rewrite ^/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 last;

if ($request_filename ~ "\.php$" ) {
rewrite ^(.*)$ /vbseo.php last;
}

if (!-e $request_filename) {
rewrite ^/(.*)$ /vbseo.php last;
}

}

}
 
We do not support nginx, you'll need to rewrite the .htaccess on your own unfortunately :(
 
Status
Not open for further replies.

Legacy vBArcade

vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
899
Customer rating
0.00 star(s) 0 ratings
Back
Top