AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   SourceBans / SourceBans++ (https://forums.alliedmods.net/forumdisplay.php?f=152)
-   -   Help with NGINX server config (https://forums.alliedmods.net/showthread.php?t=341339)

crazyman090 01-17-2023 05:40

Help with NGINX server config
 
Hello, trying to set up sourcebans with my current config file causes it to download index.php rather than display it.

fastcgi_pass is correct version, sourcebans is in the correct folder, all files have 777 perms.

server is running pterodactyl panel as well.

Code:

location ^~ /bans {
        alias /var/www/sourcebans;
        try_files $uri $uri/ /index.php?$query_string;

}

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/run/php/php8.1-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;
    }



All times are GMT -4. The time now is 21:33.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.