View Single Post
Author Message
SpirT
Senior Member
Join Date: Sep 2018
Location: Portugal
Old 10-31-2020 , 14:37   SOLVED [NGINX] Setup config
Reply With Quote #1

Hey.

I am trying to setup sourcebans on my vps. I have nginx & php 7.4 installed.

My config has the following: (I'll install SSL later)
Code:
server {
	listen 80;

	server_name bans.website.com;

	root /var/www/bans;
	index index.php index.html;

	location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/run/php/php7.4-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M";
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param HTTP_PROXY "";
        fastcgi_intercept_errors off;
        fastcgi_buffer_size 16k;
        fastcgi_buffers 4 16k;
        fastcgi_connect_timeout 300;
        fastcgi_send_timeout 300;
        fastcgi_read_timeout 300;
        include /etc/nginx/fastcgi_params;
    }
}
When I try to access the website with the url it just downloads a file like this -> https://prnt.sc/vaua1z

Any ideas for the fix?

Best Regards,

SpirT.
__________________

Last edited by SpirT; 12-22-2020 at 05:38.
SpirT is offline