存档

文章标签 ‘nginx’

mac 安装nginx php环境

2022年2月11日 没有评论

➜  etc brew install nginx ==> Installing dependencies for nginx: pcre, openssl ==> Installing nginx dependency: pcre ==> Downloading https://homebrew.bintray.com/bottles/pcre-8.38.el_capitan.bottle.tar.gz ######################################################################## 100.0% ==> Pouring pcre-8.38.el_capitan.bottle.tar.gz 🍺  /usr/local/Cellar/pcre/8.38: 203 files, 5.4M ==> Installing nginx dependency: openssl ...

分类: nginx 标签: ,

Nginx极简入门教程

2022年2月9日 1 条评论

本教程会告诉你 Nginx 是如何工作的,其背后的概念有哪些,以及如何优化以提升应用程序的性能。还会介绍如何安装、如何启动、运行 Nginx。如果你对 Nginx 已经有所了解,或者你希望了解更多,这个教程也会对你非常有帮助。 本教程包括三节: 基础概念——你可以了解命令(directive)与环境或者上下文(context)的区别、继承模式,以及 Nginx 选择服务器区块的顺序,还有安装位置。 性能管理——提升速度的诀窍。我们将会讲解 gzip、缓存、缓冲区以及超时设置。 SSL 设置——讲解用 HTTPS 来提供内容的设置步骤。 为了可以方便地找到正确...

分类: nginx 标签: , , , , , ,

nginx 实现 ajax 跨域请求

2016年1月24日 1 条评论

AJAX从一个域请求另一个域会有跨域的问题。那么如何在nginx上实现ajax跨域请求呢?要在nginx上启用跨域请求,需要添加add_header Access-Control*指令。如下所示: location /{ add_header 'Access-Control-Allow-Origin' 'http://other.subdomain.com'; add_header 'Access-Control-Allow-Credentials' 'true'; add_header 'Access-Control-Allow-Methods' 'GET'; ... ... the rest of your configuration here ... ... } 1234567891011 ...

分类: nginx 标签: ,

ubuntu下使用apt方式安装、卸载nginx

2014年1月8日 4 条评论

ubuntu和debain下的apt方式安装软件很方便,特别是对于新手安装和卸载nginx。 由于nginx不能动态添加模块,所以会经常安装和卸载、升级。 apt安装nginx方法 sudo apt-add-repository ppa:nginx/development sudo apt-get update sudo apt-get install nginx apt卸载nginx方法 卸载方法1. # 删除nginx,保留配置文件 sudo apt-get remove nginx #删除配置文件 rm -rf /etc/nginx 卸载方法2. #删除nginx连带配置文件 sudo apt-get purge nginx # Removes everything. #卸载不再需要的nginx依赖程序 sudo apt-get autoremove

分类: nginx 标签: , , ,

如何让自己出众 从nginx.cn出发

2012年3月6日 没有评论

我注册了一个我们这个行当用的比较广泛的服务器域名nginx.cn。  

分类: 技术 标签: , ,