V2EX yuanyuandeqiu
 yuanyuandeqiu 最近的时间轴更新
yuanyuandeqiu

yuanyuandeqiu

V2EX 第 620652 号会员,加入于 2023-03-24 17:04:59 +08:00
根据 yuanyuandeqiu 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
yuanyuandeqiu 最近回复了
2024-01-09 19:58:45 +08:00
回复了 yuanyuandeqiu 创建的主题 问与答 idea translate 不能使用谷歌翻译了
@1194129822 @hzdzyx @iold idea 内设置了代理,之前都是可以用的,下午有一段时间不行,现在又好了
2023-08-17 12:31:24 +08:00
回复了 yuanyuandeqiu 创建的主题 NGINX Nginx 配置疑问
@yulgang 已经解决了,现在可以用固定的配置访问了
2023-08-11 17:47:46 +08:00
回复了 yuanyuandeqiu 创建的主题 NGINX Nginx 配置疑问
@yulgang nginx -T 感觉没什么问题
2023-08-11 17:46:57 +08:00
回复了 yuanyuandeqiu 创建的主题 NGINX Nginx 配置疑问
# configuration file D:\programe\nginx-1.24.0/conf/mime.types:

types {
text/html html htm shtml;
text/css css;
text/xml xml;
image/gif gif;
image/jpeg jpeg jpg;
application/Javascript js;
application/atom+xml atom;
application/rss+xml rss;

text/mathml mml;
text/plain txt;
text/vnd.sun.j2me.app-descriptor jad;
text/vnd.wap.wml wml;
text/x-component htc;

image/avif avif;
image/png png;
image/svg+xml svg svgz;
image/tiff tif tiff;
image/vnd.wap.wbmp wbmp;
image/webp webp;
image/x-icon ico;
image/x-jng jng;
image/x-ms-bmp bmp;

font/woff woff;
font/woff2 woff2;

application/java-archive jar war ear;
application/json json;
application/mac-binhex40 hqx;
application/msword doc;
application/pdf pdf;
application/postscript ps eps ai;
application/rtf rtf;
application/vnd.apple.mpegurl m3u8;
application/vnd.google-earth.kml+xml kml;
application/vnd.google-earth.kmz kmz;
application/vnd.ms-excel xls;
application/vnd.ms-fontobject eot;
application/vnd.ms-powerpoint ppt;
application/vnd.oasis.opendocument.graphics odg;
application/vnd.oasis.opendocument.presentation odp;
application/vnd.oasis.opendocument.spreadsheet ods;
application/vnd.oasis.opendocument.text odt;
application/vnd.openxmlformats-officedocument.presentationml.presentation
pptx;
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
xlsx;
application/vnd.openxmlformats-officedocument.wordprocessingml.document
docx;
applicaton/vnd.wap.wmlc wmlc;
application/wasm wasm;
application/x-7z-compressed 7z;
application/x-cocoa cco;
application/x-java-archive-diff jardiff;
application/x-java-jnlp-file jnlp;
application/x-makeself run;
application/x-perl pl pm;
application/x-pilot prc pdb;
application/x-rar-compressed rar;
application/x-redhat-package-manager rpm;
application/x-sea sea;
application/x-shockwave-flash swf;
application/x-stuffit sit;
application/x-tcl tcl tk;
application/x-x509-ca-cert der pem crt;
application/x-xpinstall xpi;
application/xhtml+xml xhtml;
application/xspf+xml xspf;
application/zip zip;

application/octet-stream bin exe dll;
application/octet-stream deb;
application/octet-stream dmg;
application/octet-stream iso img;
application/octet-stream msi msp msm;

audio/midi mid midi kar;
audio/mpeg mp3;
audio/ogg ogg;
audio/x-m4a m4a;
audio/x-realaudio ra;

video/3gpp 3gpp 3gp;
video/mp2t ts;
video/mp4 mp4;
video/mpeg mpeg mpg;
video/quicktime mov;
video/webm webm;
video/x-flv flv;
video/x-m4v m4v;
video/x-mng mng;
video/x-ms-asf asx asf;
video/x-ms-wmv wmv;
video/x-msvideo avi;
}
2023-08-11 17:46:20 +08:00
回复了 yuanyuandeqiu 创建的主题 NGINX Nginx 配置疑问
nginx: the configuration file D:\programe\nginx-1.24.0/conf/nginx.conf syntax is ok
nginx: configuration file D:\programe\nginx-1.24.0/conf/nginx.conf test is successful
# configuration file D:\programe\nginx-1.24.0/conf/nginx.conf:

worker_processes 1;

events {
worker_connections 1024;
}


http {
include mime.types;
default_type application/octet-stream;


sendfile on;
tcp_nopush on;
tcp_nodelay on;

keepalive_timeout 65;

gzip on;
gzip_disable "msie6";

server {
listen 80;
server_name localhost;

location /scoreserv {
proxy_pass http://127.0.0.1:8080;
}
location / {
proxy_pass https://example1.com/;
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}

server {
listen 82;
location / {
proxy_pass https://example2.com;

}

location /api {
proxy_pass http://127.0.0.1:8848;
}

}

}
2023-08-11 17:12:38 +08:00
回复了 yuanyuandeqiu 创建的主题 NGINX Nginx 配置疑问
@skiy 看日志的话 URI 是一样的
@yulgang 之前的话是两个都不行,报 404 ,然后我开了个无痕模式就可以了,再然后就出现两个地址轮流出问题的情况,不知道和缓存有没有关系
@maclanelf134 其他人的都没问题,应该是我的问题,一样的配置就我的会这样,不知道和 nginx 版本有没有关系
2023-08-11 16:57:32 +08:00
回复了 yuanyuandeqiu 创建的主题 NGINX Nginx 配置疑问
@CnpPt 加不加/的区别有什么区别吗,这个我不知道

然后这个是两个都会出现无法使用的情况,然后改成另一个就可以了,这期间域名也没有改变
2023-06-07 16:44:07 +08:00
回复了 yuanyuandeqiu 创建的主题 Java Java 优先队列问题
@Nazz
@jamezee
感谢
2023-06-07 16:13:59 +08:00
回复了 yuanyuandeqiu 创建的主题 Java Java 优先队列问题
debug 的时候 q 的顺序和 System.out.println 打印出来的一致,这是为什么/div>
关于     帮助文档     自助推广系统     博客     API     FAQ     Solana     5358 人在线   最高记录 6679       Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 13ms UTC 07:07 PVG 15:07 LAX 23:07 JFK 02:07
Do have faith in what you're doing.
ubao msn snddm index pchome yahoo rakuten mypaper meadowduck bidyahoo youbao zxmzxm asda bnvcg cvbfg dfscv mmhjk xxddc yybgb zznbn ccubao uaitu acv GXCV ET GDG YH FG BCVB FJFH CBRE CBC GDG ET54 WRWR RWER WREW WRWER RWER SDG EW SF DSFSF fbbs ubao fhd dfg ewr dg df ewwr ewwr et ruyut utut dfg fgd gdfgt etg dfgt dfgd ert4 gd fgg wr 235 wer3 we vsdf sdf gdf ert xcv sdf rwer hfd dfg cvb rwf afb dfh jgh bmn lgh rty gfds cxv xcv xcs vdas fdf fgd cv sdf tert sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf shasha9178 shasha9178 shasha9178 shasha9178 shasha9178 liflif2 liflif2 liflif2 liflif2 liflif2 liblib3 liblib3 liblib3 liblib3 liblib3 zhazha444 zhazha444 zhazha444 zhazha444 zhazha444 dende5 dende denden denden2 denden21 fenfen9 fenf619 fen619 fenfe9 fe619 sdf sdf sdf sdf sdf zhazh90 zhazh0 zhaa50 zha90 zh590 zho zhoz zhozh zhozho zhozho2 lislis lls95 lili95 lils5 liss9 sdf0ty987 sdft876 sdft9876 sdf09876 sd0t9876 sdf0ty98 sdf0976 sdf0ty986 sdf0ty96 sdf0t76 sdf0876 df0ty98 sf0t876 sd0ty76 sdy76 sdf76 sdf0t76 sdf0ty9 sdf0ty98 sdf0ty987 sdf0ty98 sdf6676 sdf876 sd876 sd876 sdf6 sdf6 sdf9876 sdf0t sdf06 sdf0ty9776 sdf0ty9776 sdf0ty76 sdf8876 sdf0t sd6 sdf06 s688876 sd688 sdf86