Added default bang selector & SearXNG

This commit is contained in:
Joshua Higgins
2025-07-02 23:50:22 -04:00
parent 91a66c25de
commit 5d88ebd457
8 changed files with 5606 additions and 16 deletions

17
nginx.conf Normal file
View File

@@ -0,0 +1,17 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
# Optional: Cache control for assets
location ~* \.(js|css|png|jpg|jpeg|gif|ico|woff|woff2|ttf|svg|eot)$ {
expires 1y;
add_header Cache-Control "public, no-transform";
}
}