参考资料库

Nginx 速查表

Nginx server block、代理、重定向和缓存片段。

Test config

参考: Validate configuration before reload.

nginx -t

Reload

参考: Reload without dropping connections.

systemctl reload nginx

Reverse proxy

参考: Forward requests to an app server.

proxy_pass http://127.0.0.1:3000;

Redirect

参考: Create a permanent redirect.

return 301 https://example.com$request_uri;

相关工具