我正在从 Apache2 切换到 nginx。
在 nginx 世界中这些命令的对应内容是什么?
sudo a2enmod ssl
sudo a2enmod rewrite
sudo a2enmod headers
sudo a2enmod expires
sudo a2enmod php5
非常感谢,
答案1
没有等价的东西,因为Nginx 模块在编译时被选择。参考的 Nginx 文档会显示标准模块。运行nginx -V
会显示编译选项。例如:
$ nginx -V
nginx version: nginx/0.7.61
built by gcc 4.2.4 (Ubuntu 4.2.4-1ubuntu4)
configure arguments: --prefix=/usr/local --sbin-path=/usr/local/sbin --conf-path=/etc/nginx/nginx.conf --pid-path=/var/run/nginx.pid --lock-path=/var/lock/nginx.lock --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/body --http-proxy-temp-path=/var/lib/nginx/proxy --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --with-http_flv_module --with-http_ssl_module --with-http_stub_status_module
附注一下,a2enmod 是 Debian/Ubuntu-ism;其他 Linux 发行版将以不同的方式启用 Apache 模块。