Web Servers & Proxies

135 commands

nginx -Vnginx -c /etc/nginx/nginx.confnginx -t -c /etc/nginx/nginx.confnginx -s stopnginx -s quitnginx -s reopennginx -g 'daemon off;'nginx -V 2>&1 | grep -- '--with-http_ssl_module'journalctl -u nginx --since todaycurl -I http://localhostcurl -I -H 'Host: example.com' http://localhostcurl -s -o /dev/null -w '%{http_code}\n' http://localhostgrep -R 'server_name' /etc/nginx/sites-enabled/ls /etc/nginx/sites-available/ls /etc/nginx/sites-enabled/apache2 -vapache2 -Vapache2ctl -tapache2ctl -Mapache2ctl -Lapache2ctl gracefulapache2ctl graceful-stopapache2ctl restarta2ensite example.coma2dissite example.coma2enmod ssla2enmod proxy_httpa2enmod headersa2dismod rewritea2dismod autoindexa2enconf php8.3-fpma2disconf php8.3-fpma2query -m rewritea2query -s example.coma2query -c php8.3-fpmsystemctl status apache2journalctl -u apache2 -fls /etc/apache2/sites-enabled/htpasswd -c /etc/apache2/.htpasswd alicehtpasswd -B /etc/apache2/.htpasswd bobcaddy run --watchcaddy run --config /etc/caddy/Caddyfilecaddy reload --config /etc/caddy/Caddyfilecaddy adapt --config /etc/caddy/Caddyfile --prettycaddy fmt /etc/caddy/Caddyfilecaddy file-server --listen :8080caddy file-server --root /srv/www --browsecaddy reverse-proxy --from example.com --to localhost:3000caddy reverse-proxy --from :8080 --to localhost:3000caddy list-modulescaddy build-infocaddy trustcaddy untrustcaddy hash-password --plaintext 's3cret'curl -s http://localhost:2019/config/ | jqsystemctl status caddyhaproxy -vhaproxy -vvhaproxy -c -f /etc/haproxy/haproxy.cfghaproxy -c -f /etc/haproxy/haproxy.cfg -f /etc/haproxy/conf.d/haproxy -f /etc/haproxy/haproxy.cfg -dbsystemctl status haproxysystemctl reload haproxyjournalctl -u haproxy -fcurl -s http://localhost:8404/statsecho 'show info' | socat stdio /run/haproxy/admin.sockecho 'show stat' | socat stdio /run/haproxy/admin.sockecho 'show servers state web-backend' | socat stdio /run/haproxy/admin.sockecho 'disable server web-backend/web01' | socat stdio /run/haproxy/admin.sockecho 'enable server web-backend/web01' | socat stdio /run/haproxy/admin.socktraefik --configFile=/etc/traefik/traefik.ymltraefik --providers.docker=true --entrypoints.web.address=:80docker compose logs traefik -fcurl -s http://localhost:8080/api/rawdata | jqcurl -s http://localhost:8080/api/http/routers | jq '.[].name'curl -s http://localhost:8080/api/overview | jqcurl -s http://localhost:8080/api/entrypoints | jq '.[].name'certbot --nginx -d example.com --redirectcertbot --nginx -d example.com --dry-runcertbot certonly --nginx -d example.comcertbot certonly --standalone -d example.com --preferred-challenges httpcertbot certonly --standalone -d example.com --preferred-challenges http --http-01-port 8080certbot certonly --webroot -w /var/www/html -d example.comcertbot certonly --dns-cloudflare -d '*.example.com' --dns-cloudflare-credentials ~/.cloudflare/credentialscertbot certonly --manual --preferred-challenges dns -d example.comcertbot renew --force-renewalcertbot renew --deploy-hook 'systemctl reload nginx'certbot register --email admin@example.com --agree-toscertbot --versionsystemctl list-timers | grep certbotsystemctl status certbot.timerreadlink -f /etc/letsencrypt/live/example.com/cert.pemecho | openssl s_client -connect example.com:443 -servername example.com 2>/dev/null | openssl x509 -noout -enddateecho | openssl s_client -connect example.com:443 -servername example.com 2>/dev/null | openssl x509 -noout -subject -issuerecho | openssl s_client -connect example.com:443 -servername example.com 2>/dev/null | openssl x509 -noout -fingerprint -sha256echo | openssl s_client -connect example.com:443 -servername example.com -briefopenssl s_client -connect example.com:443 -servername example.com -showcerts </dev/null | grep -E '^ *(s:|i:)'openssl x509 -in /etc/letsencrypt/live/example.com/fullchain.pem -noout -subject -issueropenssl dhparam -out /etc/ssl/dhparam.pem 2048openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 365 -nodes -subj '/CN=localhost'update-ca-certificatesupdate-ca-certificates --freshlogrotate -f /etc/logrotate.d/nginxcurl -o /dev/null -s -w '%{http_code} %{time_total}s\n' https://example.comcurl -s -o /dev/null -w '%{time_connect} %{time_starttransfer} %{time_total}\n' https://example.comcurl -s -o /dev/null -w '%{ssl_verify_result} %{ssl_version} %{cipher}\n' https://example.comcurl -v https://example.comcurl --resolve example.com:443:127.0.0.1 https://example.comcurl -x http://proxy.example.com:3128 https://example.comwget --spider -S https://example.comdig +short A example.comdig +short AAAA example.comdig +short CNAME www.example.comdig +short TXT _acme-challenge.example.comdig +short NS example.comgetent hosts example.comss -tlnp | grep :443awk '{print $1}' /var/log/nginx/access.log | sort | uniq -c | sort -rn | head -10awk '{print $9}' /var/log/nginx/access.log | sort | uniq -c | sort -rn | head -10squid -vsquid -zsquid -k checksquid -k parsesquid -k reconfiguresquid -k rotatesquid -k shutdownvarnishd -C -f /etc/varnish/default.vclvarnishd -a :8080 -f /etc/varnish/default.vcl -s malloc,256Mvarnishstatvarnishlog -g requestvarnishadm backend.listvarnishadm vcl.listvarnishadm vcl.load main /etc/varnish/default.vclvarnishadm vcl.use mainvarnishadm ban 'req.url ~ ^/api/'
Search all 7,657 commands instead.