V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  koakon  ›  全部回复第 1 页 / 共 3 页
回复总数  48
1  2  3  
113 天前
回复了 iovekkk 创建的主题 汽车 国产车机迭代速度是真的快
非常同意楼上的说法。当年诺基亚时代大家也是这样的吗。
2020-05-20 11:29:44 +08:00
回复了 tairan2006 创建的主题 小米 小米 10pro 从车库出来 100%断流…
所以我把小米 10 的 5G 关了
2020-05-06 10:25:45 +08:00
回复了 Redmi2020 创建的主题 小米 小米的质量为什么都这么差,关键做法都还很恶心
50 包邮解君愁

小米手环 2 是这样的了。不是升级的锅。是屏幕坏了。慢慢没亮度了。手环也就 1-2 年的寿命,修不了。
联通的光纤也能接受相当稳定,不过最近到晚上倒是有速度不达标的情况。现在是 130 每月。100m 宽带+3 张不限流量电话卡。
2020-03-19 08:35:22 +08:00
回复了 Mac 创建的主题 全球工单系统 今日头条你们是不是疯了?
不投诉一波?今天头条早就在我的黑名单。坚决不装。
2020-02-20 10:50:32 +08:00
回复了 chaosye 创建的主题 Linux nginx 反代 docker 中的问题
@chaosye
<code>
upstream php-handler {
server 172.20.0.2:9000;
#server unix:/var/run/php/php7.2-fpm.sock;
}

server {
listen 80;
listen [::]:80;
server_name XXXXXXXXXXXXXXXX;
# enforce https
return 301 https://$server_name:8443$request_uri;
# root /usr/share/nginx/html/;
# index test.html;
}


server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name XXXXXXXXXXXXXXXXXXX;

# Use Mozilla's guidelines for SSL/TLS settings
# https://mozilla.github.io/server-side-tls/ssl-config-generator/
# NOTE: some settings below might be redundant
#ssl_certificate /etc/ssl/nginx/cloud.example.com.crt;
#ssl_certificate_key /etc/ssl/nginx/cloud.example.com.key;
ssl_certificate ca.pem;#自己配置证书
ssl_certificate_key private.key;#自己配置证书




add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none;
add_header X-Download-Options noopen;
add_header X-Permitted-Cross-Domain-Policies none;
add_header Referrer-Policy no-referrer;

# Remove X-Powered-By, which is an information leak
fastcgi_hide_header X-Powered-By;

# Path to the root of your installation
#root /var/www/nextcloud;
root /usr/share/nginx/html;#自己配置

location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}

# The following 2 rules are only needed for the user_webfinger app.
# Uncomment it if you're planning to use this app.
#rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
#rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last;

# The following rule is only needed for the Social app.
# Uncomment it if you're planning to use this app.
#rewrite ^/.well-known/webfinger /public.php?service=webfinger last;

location = /.well-known/carddav {
return 301 $scheme://$host:$server_port/remote.php/dav;
}
location = /.well-known/caldav {
return 301 $scheme://$host:$server_port/remote.php/dav;
}

# set max upload size
client_max_body_size 512M;
fastcgi_buffers 64 4K;

# Enable gzip but do not remove ETag headers
gzip on;
gzip_vary on;
gzip_comp_level 4;
gzip_min_length 256;
gzip_proxied expired no-cache no-store private no_last_modified no_etag auth;
gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy;

# Uncomment if your server is build with the ngx_pagespeed module
# This module is currently not supported.
#pagespeed off;

location / {
rewrite ^ /index.php;
}

location ~ ^\/(?:build|tests|config|lib|3rdparty|templates|data)\/ {
deny all;
}
location ~ ^\/(?:\.|autotest|occ|issue|indie|db_|console) {
deny all;
}

location ~ ^\/(?:index|remote|public|cron|core\/ajax\/update|status|ocs\/v[12]|updater\/.+|oc[ms]-provider\/.+)\.php(?:$|\/) {
fastcgi_split_path_info ^(.+?\.php)(\/.*|)$;
set $path_info $fastcgi_path_info;
try_files $fastcgi_script_name =404;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME /var/www/html/$fastcgi_script_name;#解决问题的要点所在
fastcgi_param PATH_INFO $path_info;
fastcgi_param HTTPS on;
# Avoid sending the security headers twice
fastcgi_param modHeadersAvailable true;
# Enable pretty urls
fastcgi_param front_controller_active true;
fastcgi_pass php-handler;
fastcgi_intercept_errors on;
fastcgi_request_buffering off;
}

location ~ ^\/(?:updater|oc[ms]-provider)(?:$|\/) {
try_files $uri/ =404;
index index.php;
}

# Adding the cache control header for js, css and map files
# Make sure it is BELOW the PHP block
location ~ \.(?:css|js|woff2?|svg|gif|map)$ {
try_files $uri /index.php$request_uri;
add_header Cache-Control "public, max-age=15778463";

add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none;
add_header X-Download-Options noopen;
add_header X-Permitted-Cross-Domain-Policies none;
add_header Referrer-Policy no-referrer;

# Optional: Don't log access to assets
access_log off;
}

location ~ \.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ {
try_files $uri /index.php$request_uri;
# Optional: Don't log access to other assets
access_log off;
}
}

</code>
2020-02-19 08:52:59 +08:00
回复了 chaosye 创建的主题 Linux nginx 反代 docker 中的问题
@chaosye 是的。假如用含 apache 的镜像。
外网访问自己服务器的路径就是外网-端口转发-docker 服务器-端口转发-nginx-反代-nextcloud 中的 Apache-nextcloud。有多重转换。
2020-02-18 12:30:35 +08:00
回复了 chaosye 创建的主题 Linux nginx 反代 docker 中的问题
最近才折腾好长一段时间。官方的镜像带 apache,反代比较麻烦,我是折腾好久都没成功。建议直接用 nextcloud-fpm (不带 apache )的镜像,自己配置 nginx。
2020-02-17 17:26:08 +08:00
回复了 hpj 创建的主题 宽带症候群 为什么电脑一到 00:00 分就开始断网?
一般是运营商强制断网换 IP。24 小时一次。你设定早上 6 点重启路由。那就不会 0 点被断网了。
2018-10-26 10:27:21 +08:00
回复了 alvin666 创建的主题 分享发现 mix3 v 友们觉得如何?
2,。3D 是最想要的功能,以后还能简单建模玩玩。这个不上估计是成本问题吧。或者小米还没把这个技术搞好。小米 8 透明探索版就没正常卖过。
2018-10-26 10:24:58 +08:00
回复了 alvin666 创建的主题 分享发现 mix3 v 友们觉得如何?
根据逛论坛得到的信息结合猜测:
1.屏幕指纹当前的问题在于无法进行生物检测,有安全性隐患,解锁成功率不高。
2018-10-26 10:23:24 +08:00
回复了 alvin666 创建的主题 分享发现 mix3 v 友们觉得如何?
根据逛论坛得到的信息结合猜测:屏幕指纹想
2018-10-26 10:22:08 +08:00
回复了 q9OxQg 创建的主题 WireGuard wireguard 是不是只能成对使用?
openwrt 里面我记得是可以添加多个客户端的私钥的,之前折腾的时候也能 ping 通过,但是不知道为啥就是路由不了,无法做全数据的路由。
2018-10-26 10:16:28 +08:00
回复了 q9OxQg 创建的主题 WireGuard wireguard 是不是只能成对使用?
应该是多配多。我倒是没办法解决安卓上的路由问题。我是 openwrt+安卓
2018-10-12 09:39:44 +08:00
回复了 zhenchao 创建的主题 宽带症候群 广东联通部分地区要上 ipv6 可能要大动干戈了
@suixn
Active DHCPv6 Leases 列表里面是有 ipv6 地址分配了。
但是没啥用。路由什么的应该还没弄好吧。得等一段时间才能正常使用。
2018-10-11 19:38:56 +08:00
回复了 zhenchao 创建的主题 宽带症候群 广东联通部分地区要上 ipv6 可能要大动干戈了
19:00 时候测试还行,现在测试反而提示没 ipv6 了。
http://test-ipv6.com/
不过 ppp-ipv6 拨号里面是有获取到 ipv6 地址的。
用的 openwrt。
2018-10-11 19:18:58 +08:00
回复了 zhenchao 创建的主题 宽带症候群 广东联通部分地区要上 ipv6 可能要大动干戈了
@suixn 有了。但是 ip 地址检测网站监测的地址跟实际 ppp-wan 获取的 ipv6 不一样。
提示“你正在使用 IPv4 或 IPv6 隧道。”
不知道是否跟有公网的 ipv4 地址有没关系
2018-10-11 17:08:41 +08:00
回复了 zhenchao 创建的主题 宽带症候群 广东联通部分地区要上 ipv6 可能要大动干戈了
补充问下,IPV6 地址有了以后有啥实际有意思的使用?
2018-10-11 17:04:35 +08:00
回复了 zhenchao 创建的主题 宽带症候群 广东联通部分地区要上 ipv6 可能要大动干戈了
刚看了下,已有 ipv6 地址。自己换的华为光猫。
1  2  3  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2466 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 29ms · UTC 15:49 · PVG 23:49 · LAX 08:49 · JFK 11:49
Developed with CodeLauncher
♥ Do have faith in what you're doing.