码迷,mamicode.com
首页 >  
搜索关键字:server_name    ( 674个结果
配置多网卡多IP的方式
[root@web01 conf.d]# cat ip.conf server { listen 10.0.0.7:80; server_name _; location / { root /code_ip_eth0; index index.html; } } server { listen 17... ...
分类:其他好文   时间:2019-05-03 11:27:27    阅读次数:128
nginx常用配置3
## 六、浏览器本地缓存配置 语法:expires 60 s|m|h|d ```动静分离效果: server { listen 80; server_name localhost; location / { root html; index index.html; } location ~ \.(p ...
分类:其他好文   时间:2019-04-15 00:43:54    阅读次数:198
【nginx】中server配置说明
server { listen 80; //监听的端口号 server_name localhost; //用域名方式访问的地址 #charset koi8-r; //编码 #access_log /var/log/nginx/host.access.log main; //访问日志文件和名称 lo... ...
分类:其他好文   时间:2019-04-14 16:14:51    阅读次数:73
nginx普通配置/负载均衡配置/ssl/https配置
1、nginx普通配置 server { listen 80; server_name jqlin.lynch.com; access_log /var/log/nginx/main.log main; error_log /var/log/nginx/pay_local.error; #log_f... ...
分类:Web程序   时间:2019-04-09 20:57:53    阅读次数:192
nginx代理模式
地址:https://www.cnblogs.com/jiangwangxiang/p/8481661.html 代理服务: server { listen 80; server_name nczfgjj.com www.nczfgjj.com www.nczfgjj.gov.cn zfgjj.na ...
分类:其他好文   时间:2019-04-02 21:09:52    阅读次数:204
nginx http和https共存
server { listen 80 default backlog=2048; listen 443 ssl; server_name linuxyan.com; root /var/www/html; ssl_certificate /usr/local/Tengine/sslcrt/linux ...
分类:Web程序   时间:2019-04-01 17:16:57    阅读次数:196
Nginx之server指令
Server指令标识为一个虚拟服务器,它描述的是一组根据不同的server_name指令逻辑分割的资源,这些虚拟服务器响应HTTP请求,因此它们都包含在http部分中。一个虚拟服务器由listen和server_name指令组合定义,listen指令定义了一个IP地址/端口组合或者是UNIX域套接字路径。listenaddress[:port];listenport;listenunix:path
分类:其他好文   时间:2019-03-31 13:36:06    阅读次数:265
Exchange Server批量连接所有已断开的邮箱
适用平台:ExchangeServer2010此命令将检查所有邮箱服务器,并重新连接任何一个邮箱存储中所有被唯一标识但已断开连接的邮箱:$Servers=Get-ExchangeServer$Servers|`Where{$_.IsMailboxServer-Eq‘$True‘}`|ForEach{Get-MailboxStatistics-Server$_.Name`|Where{$_.Disc
分类:其他好文   时间:2019-03-26 09:19:29    阅读次数:181
Nginx详解二十五:Nginx架构篇之Nginx常见的问题
Nginx常见的问题 1、相同server_name多个虚拟主机优先级访问,是按读取文件的优先级来排序 在/opt/app/下准备3个code文件夹,下面放入3个html文件,里面的内容分别是code1下对应server1... 在/etc/nginx/conf.d/下准备了3个conf文件 dif ...
分类:其他好文   时间:2019-03-17 01:07:37    阅读次数:197
域名访问网站,对应指定的配置文件里边的域名,防止访问错误
单独做一个nginx配置文件里边内容为: server { listen 80 default_server; server_name _; access_log off; return 444; } ...
分类:Web程序   时间:2019-03-15 14:29:10    阅读次数:237
674条   上一页 1 ... 13 14 15 16 17 ... 68 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!