Skip to content

typicalGtaTG/Modern-Nginx-ErrorPages

Repository files navigation

Modern-Nginx-ErrorPages

Allows you to customize and add your own modern error pages for Nginx webserver. This is a modified version of another repo by denysvitali called nginx error pages.

Installation

mkdir -p /srv/http/default
git clone https://github.com/typicalGtaTG/Modern-Nignx-ErrorPages /srv/http/default
mkdir /etc/nginx/snippets/
ln -s /srv/http/default/snippets/error_pages.conf /etc/nginx/snippets/error_pages.conf
ln -s /srv/http/default/snippets/error_pages_content.conf /etc/nginx/snippets/error_pages_content.conf

Then add to each of your vhosts the following:

include snippets/error_pages.conf;

Example:

$ cat /etc/nginx/conf.d/plex.conf 

server {
        listen       80;
        listen       [::]:80;
        listen       443 ssl http2;
        listen       [::]:443 ssl http2;
        server_name  plex.sv1 plex.sv1.lnet;
        include snippets/ssl.conf;
        include snippets/error_pages.conf; # <== This
        root         /usr/share/nginx/html;

        location / {
                include snippets/reverse-proxy.conf;
                proxy_pass https://127.0.0.1:32400;
        }
}