Opengist Logo emanuelegori's Gists

Explore

  • All gists
  • Topics
  • Users
Copyright 2024 - 2025 emanuelegori.uno
Give feedback on the new UI Powered by Opengist ⋅ 37ms

user:thomas gists created by user

title:mygist gists with given title

description:sync gists with given description

filename:myfile.txt gists having files with given name

extension:yml gists having files with given extension

language:go gists having files with given language

topic:homelab gists with given topic

all:systemctl search all fields

Login
h

html

Recently created Least recently created Recently updated Least recently updated
emanuelegori

emanuelegori / http.conf

Last active 3 months ago 404 html nginx npm

Default Site - HTTPS catch-all (wildcard)

0 0 1
1 # Default Site - HTTPS catch-all (wildcard)
2 server {
3 listen 443 ssl default_server;
4 listen [::]:443 ssl default_server;
5 server_name _;
6
7 # Modifica npm-XX con l'ID del tuo certificato wildcard (es. npm-46)
8 ssl_certificate /etc/letsencrypt/live/npm-XX/fullchain.pem;
9
10 # Modifica npm-XX con l'ID del tuo certificato wildcard (es. npm-46)
emanuelegori

emanuelegori / 404.html

Last active 3 months ago 404 html nginx npm

Custom Page 404

0 0 1
1 <!--
2 404 Custom Error Page
3 Author: Emanuele Gori <emanuelegori.uno>
4 Version: 1.0.0
5 Created: 2025-03-22
6 License: GPL-2.0-or-later
7 Description: Custom 404 page for NGINX Proxy Manager.
8 Served for unconfigured or unknown hosts.
9 Hostname and path populated dynamically via JS.
10 No external dependencies.