V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  nonozone  ›  全部回复第 10 页 / 共 68 页
回复总数  1345
1 ... 6  7  8  9  10  11  12  13  14  15 ... 68  
2017-11-29 16:25:37 +08:00
回复了 nonozone 创建的主题 NGINX 请教一个 Ngxin 换域名 301 重定向的问题,两个域名都带 ssl
@gstqc #5 两个 server 中间需要添加 location 那些么?
2017-11-29 15:24:12 +08:00
回复了 nonozone 创建的主题 NGINX 请教一个 Ngxin 换域名 301 重定向的问题,两个域名都带 ssl
因为涉及到两个域名以及两个 ssl 证书,采用了比较笨的方法。两个配置文件。
a.com.conf

server {
server_name www.a.com a.com;

#301 配置
if ($host != 'www.b.com') {
rewrite ^/(.*)$ https://www.b.com/$1 permanent;
}

#其他的配置参数

}

server {
listen 80;
listen 443 ssl;

# SSL 证书配置
ssl_certificate /etc/letsencrypt/live/www.a.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/www.a.com/privkey.pem;

#ssl_certificate /etc/letsencrypt/live/www.b.com/fullchain.pem;
#ssl_certificate_key /etc/letsencrypt/live/www.b.com/privkey.pem;

ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;

server_name www.a.com;

root /srv/www/a.com/public_html;
access_log /var/log/www/a.com.access.log;
error_log /var/log/www/a.com.error.log;

location / {
index index.php index.html index.htm;
if (-f $request_filename) {
expires 30d;
break;
}
try_files $uri $uri/ /index.php?$args;
}
# Add trailing slash to */wp-admin requests.
rewrite /wp-admin$ $scheme://$host$uri/ permanent;

location /nginx-status {
stub_status on;
access_log off;
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php/php7.0-fpm.a.com.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /srv/www/a.com/public_html$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
include fastcgi_params;
}
}

-----------
b.com.conf


server {
listen 80;
server_name www.b.com b.com www.a.com a.com;
return 301 https://www.b.com$request_uri;

}


server {
listen 80;
listen 443 ssl;

# SSL 证书配置
#ssl_certificate /etc/letsencrypt/live/www.a.com/fullchain.pem;
#ssl_certificate_key /etc/letsencrypt/live/www.a.com/privkey.pem;

ssl_certificate /etc/letsencrypt/live/www.b.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/www.b.com/privkey.pem;

ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;

server_name www.b.com;

root /srv/www/a.com/public_html;
access_log /var/log/www/a.com.access.log;
error_log /var/log/www/a.com.error.log;

location / {
index index.php index.html index.htm;
if (-f $request_filename) {
expires 30d;
break;
}
try_files $uri $uri/ /index.php?$args;
}
# Add trailing slash to */wp-admin requests.
rewrite /wp-admin$ $scheme://$host$uri/ permanent;

location /nginx-status {
stub_status on;
access_log off;
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php/php7.0-fpm.a.com.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /srv/www/a.com/public_html$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
include fastcgi_params;
}
}


@LokiSharp #1
@xman99 #6 确实很折腾...
@mhjyzs 下午刚恢复...
@lneoi #2 我尼玛,我刚才理解错误,以为垂直均分就是想要的像素,直接填了个 700...然后桌面炸了,hhh
@coderluan #1 谢谢,我试试。
@Loyalsoldier #4 试用了下,发现对国内网站的访问会稍微卡壳一阵子。
2017-09-04 15:23:21 +08:00
回复了 superleexpert 创建的主题 汽车 20W 以内 B 级车求推荐
@superleexpert #59 最近中毒法系,想从 308/408 C5aircross,C4L,C5 之间抉择吧...
2017-09-04 15:10:53 +08:00
回复了 superleexpert 创建的主题 汽车 20W 以内 B 级车求推荐
雪铁龙 C5
不把他们加入规则,一样不行哎...
2017-07-24 18:11:57 +08:00
回复了 nonozone 创建的主题 问与答 为啥我 debian8 安装 MariaDB,没有提示输入 root 的密码?
安装完 MariaDB 之后,运行 mysql_secure_installation,其中有个选项就可以修改 root 密码了 。
但是此时,用 phpmyadmin 或者 adminer 访问的時候,还是会提示
Access denied for user 'root'@'localhost'
这个时候
sudo mysql -u root
use mysql;
update user set plugin='' where User='root';
flush privileges;
exit;

这样就 OK 了
2017-07-24 11:04:20 +08:00
回复了 nonozone 创建的主题 问与答 有正在使用 TIM 的筒子么?你们的 TIM 辅助进程 CPU 占用高么?
@rosu #13 是的,我也是 inside 版本...蛋疼的很。从某个 inside 版本就一直有这个问题,最近升级了好几个版本,这个问题都没有解决。
2017-07-24 09:49:43 +08:00
回复了 nonozone 创建的主题 问与答 有正在使用 TIM 的筒子么?你们的 TIM 辅助进程 CPU 占用高么?
@yidinghe #3 就是 TIM 辅助进程
2017-06-30 20:06:00 +08:00
回复了 youngyezi 创建的主题 程序员 又到了快周末, v2er 一般都喜欢喝什么啤酒呢
福佳白
@taobibi #14 只是几个个人小站...就没那么折腾。
2017-06-28 12:01:58 +08:00
回复了 baskice 创建的主题 问与答 Logitech G700s 和 M720 手感对比?
办公的话,我还是更喜欢 G500s,大小,造型,舒适度。G700s 有线的话,那个 usb 线太硬。
2017-06-28 12:01:03 +08:00
回复了 baskice 创建的主题 问与答 Logitech G700s 和 M720 手感对比?
不要买 G700...不然你家电费吃紧...
额,刚才把 mysql-common 卸载了,然后重新安装 MariaDB,自动恢复了 。
@oott123 #2 看了下 mysql 数据库都还在,可以直接 copy 到 MaridDB 里面去么?
2017-06-13 00:45:12 +08:00
回复了 DreamWeaver2016 创建的主题 问与答 求大家推荐个路由器
AC68u
1 ... 6  7  8  9  10  11  12  13  14  15 ... 68  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5562 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 109ms · UTC 03:35 · PVG 11:35 · LAX 19:35 · JFK 22:35
Developed with CodeLauncher
♥ Do have faith in what you're doing.