0

i need help about my Nginx configuration file. I coded my html file. This is the config file:

server
    {
        listen 888;
        server_name phpmyadmin;
        index index.html index.htm index.php;
        root  /www/server/phpmyadmin;
            location ~ /tmp/ {
                return 403;
            }

        #error_page 404 /404-error.html;

        location ~ /*-error.html {
            try_files $1-error.html @error;
            internal;
        }

        location @error {
        root /var/www/wwwroot/umutisik.com/error_docs;
}

Also sorry for my bad English, not my main language.

Ivan Shatsky
  • 13,267
  • 2
  • 21
  • 37
Umut Işık
  • 33
  • 1
  • 1
  • 5

0 Answers0