解决方法:
“以管理员身份运行”ps的(桌面)快捷方式。
解决方法:
“以管理员身份运行”ps的(桌面)快捷方式。
镜像下载
https://tb.rg-adguard.net/public.php?lang=zh-CN
http://msdn.itellyou.cn/
推荐下载工具
https://www.freedownloadmanager.org/zh/
youtube-dl -F [url]youtube-dl --list-formats [url]
youtube-dl -f [format code] [url]-x或--extract-audio表示提取音頻--audio-format後面指定音頻檔案類型,像是 mp3, wav, m4a, aacExample:
|
1
|
$ youtube-dl -x –audio-format mp3 <url>
|
youtube-dl -f [format code] [url]git config –global user.name shudal
git config –global user.email shudal@qq.com
ssh-keygen -t rsa -C
cat ~/.ssh/id_rsa.pub
// 把输出的内容添加到GitHub的ssh key
ssh -T git@github.com
// 一定要输入yes,不然会Host key verification failed.默认系统不会认为输入了yes
// 具体配置成功没看这句的输出
把项目移动到/usr/share/nginx/html下,
项目名为tp5,然后直接copy链接博文的第二个
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
root /usr/share/nginx/html/tp5/public/;
index index.php;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root /usr/share/nginx/html/tp5/public/;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache’s document root
# concurs with nginx’s one
#
#location ~ /\.ht {
# deny all;
#}
}
———————
作者:上官二狗
来源:CSDN
原文:https://blog.csdn.net/qq_36431213/article/details/80456993
版权声明:本文为博主原创文章,转载请附上博文链接!