如何修改shared

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何修改shared相关的知识,希望对你有一定的参考价值。

参考技术A 反对匿名用户的答案,(boost或C++11的)shared_ptr不是线程安全的,读安全,写不安全

最简单的方法就是给shared_ptr用锁保护,因为如果想要修改shared_ptr内部的实现来支持多线程,写操作时会涉及到多个地址的更改,用简单的单地址的CAS也是做不到的。所以,不想使用锁的话,最好对shared_ptr只读不写

Nginx 如何绑定多域名?

远程连接并登录到 Linux 实例。

前提工作:

1、在/usr/share/ngin/html下面新建2个web目录用于存放www的文件:

mkdir /usr/share/nginx/html/hzcto

mkdir /usr/share/nginx/html/cstriper

2、修改/etc/nginx/nginx.conf 让conf文件调用web.conf配置文件:

最后一行增加 include /etc/nginx/conf.d/web.conf; 或者 include /etc/nginx/conf.d/*.conf;

执行命令 cd /etc/nginx/conf.d 打开 Nginx 服务配置文件目录。

一、在conf.d下新建一个conf配置文件:

执行命令 vi 您要创建的web.conf 创建域名规则配置文件,如示例中的 vi web.conf。

输入 i 编辑新建的配置文件:

将多个域名规则写进一个共同的配置文件时输入以下内容:

server

{

listen 80; #监听端口设为 80。

server_name www.hzcto.com; #绑定您的域名。

index index.htm index.html index.php; #指定默认文件。

root /usr/share/nginx/html/hzcto; #指定网站根目录。

include location.conf; #当您需要调用其他配置文件时才粘贴此项,如无需要,请删除此项。

}

server

{

listen 80; #监听端口设为 80。

server_name www.cstriper.com; #绑定您的域名。

index index.htm index.html index.php; #指定默认文件。

root /usr/share/nginx/html/cstriper; #指定网站根目录。

include location.conf; #当您需要调用其他配置文件时才粘贴此项,如无需要,请删除此项。

}

二、为无 WWW 前缀的域名配置规则并加 301 跳转时输入以下内容:

server

{

listen 80;

server_name hzcto.com;

rewrite ^/(.*) http://www.hzcto.com/$1 permanent;

}

server

{

listen 80;

server_name cstriper.com;

rewrite ^/(.*) http://www.cstriper.com/$1 permanent;

}

三、需要为域名添加 404 提示时输入以下内容:

server

{

listen 80; #监听端口设为 80。

server_name www.hzcto.com; #绑定您的域名。

index index.htm index.html index.php; #指定默认文件。

root /usr/share/html/hzcto; #指定网站根目录。

include location.conf; #当您需要调用其他配置文件时才粘贴此项,如无需要,请删除此项。

error_page 404 /404.html;

}

server

{

listen 80; #监听端口设为 80。

server_name www.cstriper.com; #绑定您的域名。

index index.htm index.html index.php; #指定默认文件。

root /usr/share/html/cstriper; #指定网站根目录。

include location.conf; #当您需要调用其他配置文件时才粘贴此项,如无需要,请删除此项。

error_page 404 /404.html;

}

按 Esc 退出编辑并输入 :wq 保存退出。

执行命令 nginx -t 检查配置是否有误,并按照报错提示修复错误。

执行命令 service nginx restart 或者 /etc/init.d/nginx restart 重启 Nginx 服务。

执行命令 service nginx reload 重新载入 Nginx 服务。

以上是关于如何修改shared的主要内容,如果未能解决你的问题,请参考以下文章

linux下怎样修改/usr/share/alsa/alsa.conf

shared_ptrs 的向量,从函数返回并修改它

我如何修改linux CentOS的时区呢?命令越简单越好 就改成东八区

修改docker容器的时区

CentOS修改时区和时间

如何将oracle的standby修改为独立的数据库