Пользователь
- Сообщения
- 8
- Реакции
- 2
Всем привет. Сначала пытался установить CS-Bans, но всегда получал ошибку 404 Not Found, при этом конфиг nginx'a настраивал, все файлы былина месте. После этого решился поставить Amxbans, думал, что с ним будет проще. Установил, настроил конфиг nginx'a. Файлы видит, но при открытии страницы просто белый экран.
Сам Amxbans устанавливал отсюда(github).
Конфиг nginx:
Логи nginx
access.log:
error.log:
Ошибки не выявлены
Система:
Debian 11
php7.4
Сам Amxbans устанавливал отсюда(github).
Конфиг nginx:
Код:
# Default server configuration
#
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
location /fastdl/ {
alias /home/public_server/serverfiles/cstrike/;
autoindex on;
location ~* (\.wad$|(maps|sprites|models|gfx|sound|media|overviews)/.*(bsp|mdl|spr|wav|mp3|bmp|tga|txt|res)$) {
allow all;
}
deny all;
}
location /phpmyadmin {
alias /usr/share/phpmyadmin/;
location ~ \.php$ {
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $request_filename;
include fastcgi_params;
fastcgi_ignore_client_abort off;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
access_log off;
log_not_found off;
expires 1M;
}
}
#Amxbans
location /amxbans {
alias /var/www/html/amxbans;
location ~\.php$ {
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
}
}
access.log:
Код:
[02/Jan/2025:19:34:00 +0300] "GET /amxbans/ HTTP/1.1" 200 31 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0"
Ошибки не выявлены
Система:
Debian 11
php7.4