hello123vvv's recent timeline updates
hello123vvv

hello123vvv

V2EX member #222677, joined on 2017-03-23 20:46:48 +08:00
hello123vvv's recent replies
Jul 14, 2018
Replied to a topic by Keller0 分享创造 一个在线运行代码的网站, https://yxi.io
http://www.dooccn.com/php7/
在用这个,php7 代码测试
Mar 1, 2018
Replied to a topic by alpinefly NGINX nginx 反向代理可以实现升级 https 功能吗
说下在用的思路,
https://bbb.com 回源到 http://aaa.com

http://aaa.com 判断非本地来路 IP 则跳转 https://bbb.com
Nov 28, 2017
Replied to a topic by lulitao1997 问与答 请教如何科学地从 VPS 上搬文件下来
简易 python web 服务,做下载文件用
8012,用 python 登陆的网站目录,提供下载文件服务.使用后停止 python web 服务.

from os import curdir,sep
from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer
class MyHandler(BaseHTTPRequestHandler):
def do_GET(self):
try:
f=open(curdir+sep+self.path)
self.send_response(200)
self.send_header('Content-type','application/octet-stream')
self.end_headers()
self.wfile.write(f.read())
f.close()
except IOError:
self.send_error(404, 'File Not Found: %s' % self.path)

def main():
try:
server = HTTPServer(('',8012),MyHandler)
print 'welcome to the ,machine...',
print 'Press ^C once or twice to quit'
server.serve_forever()
except KeyboardInterrupt:
print '^C received,shutting down server'
server.socket.close()

main()
Oct 19, 2017
Replied to a topic by aaa998 问与答 大家的阿里云香港 ecs 正常吗?
香港美国,网络都有时抽风
Oct 19, 2017
Replied to a topic by aaa998 问与答 大家的阿里云香港 ecs 正常吗?
@wlbcs 新加坡
@atnopc
@santa

月付下订单时,有说明是海外通用,
年付下订单时,没有说明海外通用,请问 4 月购买过新加坡年付的朋友,收到的是海外流量吗??
Apr 2, 2017
Replied to a topic by niuer 推广 七牛云对象存储降价了,降幅近 13%
改个 CDN 配置,提示说要 1 星期才生效,其他不能操作其他.这是七牛...
@reticentfat 禁用 ipv6
ubuntu
sh -c 'echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6'
使用有效
Mar 26, 2017
Replied to a topic by lvtongda VPS 大米云主机(金山云),没买的慎入
测试了下,大米云,SSD 性能好,网络线路好.配套太少了.
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   1641 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 22ms · UTC 16:23 · PVG 00:23 · LAX 09:23 · JFK 12:23
♥ Do have faith in what you're doing.