Nginx
亮子AI
全干程序员
展开
-
Nginx 阻止访问特定目录
在配置文件中加上:location ~ /\.git { deny all;}location ^~ /my/data/directory { deny all;}原创 2018-11-22 13:08:04 · 4393 阅读 · 0 评论 -
Ubuntu 下配置 Nginx 服务器的 SSL 证书
在Web服务器上配置TLS / SSL现在您已拥有 SSL 证书,您需要配置 Nginx Web 服务器以使用它。我们将对配置进行一些调整:我们将创建一个包含 SSL 密钥和证书文件位置的配置代码段。我们将创建一个包含强 SSL 设置的配置代码段,可以在将来与任何证书一起使用。我们将调整 Nginx 配置文件以处理 SSL 请求并使用上面的两个片段。创建指向SSL密钥和证书的配置代...原创 2018-12-22 19:57:13 · 974 阅读 · 0 评论 -
Ubuntu 18.04 下配置 Nginx 路径别名(alias)
记录一下:server { listen 443 ssl; listen [::]:443 ssl; server_name example.com www.example.com; include snippets/ssl-example.com.conf; include snippets/ssl-params.conf; index index.php ind...原创 2018-12-24 09:09:10 · 900 阅读 · 0 评论 -
Node.js 如何获取真实 IP?(Nginx 服务器)
在 nginx.conf 中配置:proxy_set_header X-Real-IP $remote_addr;在 node.js 中获取 ip:const ip = req.headers['x-real-ip'] || req.connection.remoteAddress;https://stackoverflow.com/a/18481747/3054511...原创 2019-02-25 13:47:47 · 1673 阅读 · 0 评论 -
Nginx https 反向代理 http 的配置实例
贴一个实例:server { listen xxx.xxx.xxx.xxx:80; server_name www.example.net; rewrite ^(.*) https://$server_name$1 permanent;}server { listen xxx.xxx.xxx.xxx:443; server_name www.exa...原创 2019-04-12 10:24:02 · 12831 阅读 · 0 评论