Ad Widget

Collapse

nginx 404

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vitor001
    Junior Member
    • Aug 2022
    • 1

    #1

    nginx 404

    Hello,

    I have fresh installed zabbix 6.2 on ubuntu 22.02
    need to change ip and domain for my zabbix, but getting erro 404.

    need help thanks

    more /etc/zabbix/nginx.conf
    server {
    listen 8123;
    server_name _;
    # server_name 10.20.0.11;
    # server_name zabbix.xxxx.com;

    root /usr/share/zabbix;

    index index.php;

    location = /favicon.ico {
    log_not_found off;
    }

    location / {
    try_files $uri $uri/ =404;
    }

    location /assets {
    access_log off;
    expires 10d;
    }

    location ~ /\.ht {
    deny all;
    }

    location ~ /(api\/|conf[^\.]|include|locale) {
    deny all;
    return 404;
    }

    location /vendor {
    deny all;
    return 404;
    }

    location ~ [^/]\.php(/|$) {
    fastcgi_pass unix:/var/run/php/zabbix.sock;
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_index index.php;

    fastcgi_param DOCUMENT_ROOT /usr/share/zabbix;
    fastcgi_param SCRIPT_FILENAME /usr/share/zabbix$fastcgi_script_name;
    fastcgi_param PATH_TRANSLATED /usr/share/zabbix$fastcgi_script_name;

    include fastcgi_params;
    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_intercept_errors on;
    fastcgi_ignore_client_abort off;
    fastcgi_connect_timeout 60;
    fastcgi_send_timeout 180;
    fastcgi_read_timeout 180;
    fastcgi_buffer_size 128k;
    fastcgi_buffers 4 256k;
    fastcgi_busy_buffers_size 256k;
    fastcgi_temp_file_write_size 256k;
    }
    }
Working...