TFTP 简单文件传输协议 安装 sudo apt-get install tftp tftpd openbsd-inetd 需要tftp tftpd openbsd-inetd 3个应用组件 配置 在/etc/inetd.conf tftp dgram udp wait nobody /usr/s ...
分类:
其他好文 时间:
2017-09-24 11:34:38
阅读次数:
209
DocumentRoot "/www/www.abc.com" ServerName www.abc.com ServerAlias abc.com www.abc.cn abc.cn CustomLog "| /usr/sbin/rotatelogs /weblogs/www.abc.com/%Y... ...
分类:
Web程序 时间:
2017-09-23 15:26:49
阅读次数:
203
server { root /webserver/www/api; listen 80; server_name api.dnxia.com; location / { if (!-e $request_f... ...
分类:
其他好文 时间:
2017-09-19 15:16:56
阅读次数:
234
valid_referers none blocked *.ttlsa.com server_names ~\.image\. ~\.baidu\.; if ($invalid_referer) { return 403; 例如: server { listen 80; server_name te... ...
分类:
Web程序 时间:
2017-09-10 11:22:12
阅读次数:
358
nginx代理配置 server { listen 80; server_name web1.chbo.com; location ~*\.(do|jsp)$ { proxy_pass http://web1.chbo.com:8080; #为后端服务器设置Real-IP参数 proxy_set_h... ...
分类:
其他好文 时间:
2017-09-10 11:12:45
阅读次数:
166
一:设置虚拟服务器 1.设置 2.解释 如果有多个服务器与请求的IP地址和端口相匹配,则NGINX将根据服务器块中的server_name指令测试请求的主机头域。 server_name的参数可以是完整(精确)名称,通配符或正则表达式。 通配符是一个字符串,其开头,结尾或两者都包含星号(*); 星号 ...
分类:
Web程序 时间:
2017-09-04 16:56:14
阅读次数:
154
一、Prerequisite OS : CentOS-7.0-1406-x86_64-DVD.iso Time Server : NTP Server SERVER NAME IP PLAN chef_server 192.168.100.10 chef_workstation 192.168.10 ...
分类:
其他好文 时间:
2017-09-01 13:39:55
阅读次数:
279
HTTP和HTTPS的区别 所以在涉及到账户、金钱等敏感信息交互的时候使用HTTPS是个不错的选择。 申请证书 nginx配置 server { listen 443; #listen [::]:80; server_name passport.ddhigh.com; index index.htm ...
分类:
其他好文 时间:
2017-08-31 14:25:44
阅读次数:
207
server { listen 443; ####HTTPS指定端口 server_name www.web.com; #####域名或者IP root /data/wwwroot/laravel/public; #####项目所在绝对路径,项目入口 index index.php index.ht ...
分类:
Web程序 时间:
2017-08-23 16:22:48
阅读次数:
264
server { listen 80; server_name xxx; charset utf-8; root /home/wwwroot/axxx/public; index index.html index.htm i... ...
分类:
其他好文 时间:
2017-08-23 10:22:25
阅读次数:
155