NGINX display blank pages

pasansnoop

Well-known member
  • Sep 13, 2008
    9,092
    1
    6,967
    113
    TrapHouse
    මචංලා මම vps එකේ nginx configure කරල php, mysql website එකක් host කළා..
    site එකේ pages display වෙනව ප්‍රශ්නයක් නෑ..
    ඒත් form එකක් fill කරල submit කලාම database එකට data insert වෙන්නෙත් නෑ..
    display වෙන්නෙ blank page එකක්.. (errors පෙන්නන්නෙත් නෑ)
    හැබැයි කලින් දාපු data view කරන්න පුළුවන්.. delete කරන්නත් පුළුවන්..
    website එක host කරන්න කලින් localhost දැම්මම කිසි ප්‍රශ්නයක් නැහැ :baffled:
    මම ubuntu folder permissions check කළා ඒවත් අවුලක් නෑ

    file_permissions.png


    මෙහෙම වෙන්නෙ මගේ nginx site configuration එකේ අවුලක් නිසාද?
    පොඩ්ඩක් මේක check කරල කියන්නකො

    NGINX:
    server {
            listen 80 default_server;
            listen [::]:80 default_server;
    
            # SSL configuration
            #
            # listen 443 ssl default_server;
            # listen [::]:443 ssl default_server;
            #
            # Note: You should disable gzip for SSL traffic.
            # See: https://bugs.debian.org/773332
            #
            # Read up on ssl_ciphers to ensure a secure configuration.
            # See: https://bugs.debian.org/765782
            #
            # Self signed certs generated by the ssl-cert package
            # Don't use them in a production server!
            #
            # include snippets/snakeoil.conf;
    
            root /var/www/dsportal/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;
    
                    fastcgi_buffers 8 16k;
                    fastcgi_buffer_size 32k;
                    fastcgi_connect_timeout 60;
                    fastcgi_send_timeout 300;
                    fastcgi_read_timeout 300;
            }
      
            # pass PHP scripts to FastCGI server
            #
            location ~ \.php$ {
                    include snippets/fastcgi-php.conf;
    
                    # With php-fpm (or other unix sockets):
                    fastcgi_pass unix:/run/php/php8.1-fpm.sock;
                    # With php-cgi (or other tcp sockets):
            #       fastcgi_pass 127.0.0.1:9000;
            }
    
            # deny access to .htaccess files, if Apache's document root
            # concurs with nginx's one
            #
            location ~ /\.ht {
                    deny all;
            }
    }
     
    Last edited:

    stasia

    Well-known member
  • May 28, 2018
    12,814
    26,355
    113
    כדור הארץ
    Nginx අවුලක් neveyi වගේ.
    Hestiacp dapanko.
    ඔය ලෙඩ රෝග මොනවත් නෑ

    --
    Error log කොහොමද?
    Html and php code එක දාපන් බලන්න
     
    • Like
    Reactions: pasansnoop

    stasia

    Well-known member
  • May 28, 2018
    12,814
    26,355
    113
    כדור הארץ
    e mokakda ban?

    website eke aulak naha mama localhost demmama weda karanawa..
    nginx dala host kalama tamai form submit wenne naththe machan..
    Php version දෙකක් ද දන්නේ නෑ

    Delete වෙනවා නම් nginx අවුලක් වෙන්න බැ. කැමැති නම් html and php code tika pm කරපන් .

    sudo chown -R ubuntu:www-data /var/www/dsportal/html
     
    Last edited:
    • Like
    Reactions: pasansnoop