koakon 最近的时间轴更新
koakon

koakon

V2EX 第 228890 号会员,加入于 2017-05-04 08:55:30 +08:00
koakon 最近回复了
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 点被断网了。
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3501 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 14ms · UTC 10:51 · PVG 18:51 · LAX 03:51 · JFK 06:51
Developed with CodeLauncher
♥ Do have faith in what you're doing.