22 Mar 26
Links from around the web, curated and annotated by Seirdy.
by c0pe
4 months ago
18 Mar 26
09 Dec 22
02 Oct 22
https://git.tilde.institute/tilde/admin
21 Aug 22
Default server configuration
# server {
listen 80 default_server;
listen [::]:80 default_server;
# SSL configuration
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name example.com www.example.com;
location ~ ^/~(. ?)(/.*)?$ {
alias /home/$1/public_html$2;
index index.html index.htm;
autoindex on;
}
}