只需一步,快速开始
cd /root/oneinstack/src git clone https://github.com/cuber/ngx_http_google_filter_module git clone https://github.com/yaoweibin/ngx_http_substitutions_filter_module wget http://mirrors.linuxeye.com/oneinstack/src/pcre-8.39.tar.gz wget http://mirrors.linuxeye.com/oneinstack/src/openssl-1.0.2j.tar.gz tar xzf pcre-8.39.tar.gz tar xzf openssl-1.0.2j.tar.gz tar xzf nginx-1.10.2.tar.gz cd nginx-1.10.2 ./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_stub_status_module \ --with-http_v2_module --with-http_ssl_module --with-ipv6 --with-http_gzip_static_module \ --with-http_realip_module --with-http_flv_module --with-openssl=../openssl-1.0.2j \ --with-pcre=../pcre-8.39 --with-pcre-jit --with-ld-opt='-ljemalloc' \ --add-module=../ngx_http_google_filter_module \ --add-module=../ngx_http_substitutions_filter_module make mv /usr/local/nginx/sbin/nginx{,_`date +%m%d`} #备份现有nginx cp objs/nginx /usr/local/nginx/sbin/ #更新nginx nginx -t #检查nginx语法 service nginx restart
cd /root/oneinstack ./addons.sh
cd /root/oneinstack ./vhost.sh
vi /usr/local/nginx/conf/vhost/demo.linuxeye.com.conf,保持内容如下: server { listen 443 ssl http2; server_name demo.linuxeye.com; ssl_certificate /usr/local/nginx/conf/ssl/demo.linuxeye.com.crt; ssl_certificate_key /usr/local/nginx/conf/ssl/demo.linuxeye.com.key; ssl_session_timeout 10m; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; ssl_ciphers CHACHA20:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-RC4-SHA:ECDHE-RSA-AES256-SHAHE-RSA-AES256-SHAHE-RSA-AES128-SHA:RC4-SHA:!aNULL:!eNULL:!EXPORT:!DES:!3DES:!MD5:!DSS:!PKS; ssl_session_cache builtin:1000 shared:SSL:10m; resolver 8.8.8.8 8.8.4.4 valid=300s; resolver_timeout 5s; location / { google on; google_scholar on; #google_scholar 依赖于 google, 所以 google_scholar 无法独立使用。由于谷歌学术近日升级, 强制使用 https 协议, 并且 ncr 已经支持, 所以不再需要指定谷歌学术的 tld google_language en; #语言偏好,默认使用 zh-CN (中文) } } server { listen 80; server_name demo.linuxeye.com; rewrite ^(.*)$ https://$host$1 permanent; #访问http跳转至https }
service nginx restart
举报
本版积分规则 发表回复 回帖后跳转到最后一页
Archiver|手机版|小黑屋|全球主机交流论坛
GMT+8, 2025-1-16 03:50 , Processed in 0.057062 second(s), 8 queries , Gzip On, MemCache On.
Powered by Discuz! X3.4
© 2001-2023 Discuz! Team.