V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  chenli100681  ›  全部回复第 2 页 / 共 3 页
回复总数  57
1  2  3  
2023-09-08 17:13:59 +08:00
回复了 chenli100681 创建的主题 程序员 求助 nginx 相关问题! v2er 救救孩子吧!呜呜呜!
@NessajCN #14 不管怎样,先给您磕一个!
total 8
drwxr-xr-x 2 root root 4096 Sep 2 07:32 ./
drwxr-xr-x 8 root root 4096 Sep 8 07:37 ../
lrwxrwxrwx 1 root root 34 Sep 2 07:32 default -> /etc/nginx/sites-available/default

##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# https://www.nginx.com/resources/wiki/start/
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
# https://wiki.debian.org/Nginx/DirectoryStructure
#
# In most cases, administrators will remove this file from sites-enabled/ and
# leave it as reference inside of sites-available where it will continue to be
# updated by the nginx packaging team.
#
# This file will automatically load configuration files provided by other
# applications, such as Drupal or Wordpress. These applications will be made
# available underneath a path with that package name, such as /drupal8.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##

# Default server configuration
#
server {
listen 80 default_server;
listen [::]:80 default_server;

# SSL configuration
#
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
#
# Note: You should disable gzip for SSL traffic.
# See: https://bugs.debian.org/773332
#
# Read up on ssl_ciphers to ensure a secure configuration.
# See: https://bugs.debian.org/765782
#
# Self signed certs generated by the ssl-cert package
# Don't use them in a production server!
#
# include snippets/snakeoil.conf;

root /var/www/html;

# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;

server_name _;

location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}

# pass PHP scripts to FastCGI server
#
#location ~ \.php$ {
# include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
# fastcgi_pass unix:/run/php/php7.4-fpm.sock;
# # With php-cgi (or other tcp sockets):
# fastcgi_pass 127.0.0.1:9000;
#}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}


# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
# listen 80;
# listen [::]:80;
#
# server_name example.com;
#
# root /var/www/example.com;
# index index.html;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
worker_connections 768;
# multi_accept on;
}

http {

##
# Basic Settings
##

sendfile on;
tcp_nopush on;
types_hash_max_size 2048;
# server_tokens off;

# server_names_hash_bucket_size 64;
# server_name_in_redirect off;

include /etc/nginx/mime.types;
default_type application/octet-stream;

##
# SSL Settings
##

ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;

##
# Logging Settings
##

access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;

##
# Gzip Settings
##

gzip on;

# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

##
# Virtual Host Configs
##

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;

server {
listen 80;
server_name shayu100861.me;
root /home/vpssf/www/webpage;
index index.html;
}

}


#mail {
# # See sample authentication script at:
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
# # auth_http localhost/auth.php;
# # pop3_capabilities "TOP" "USER";
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
# server {
# listen localhost:110;
# protocol pop3;
# proxy on;
# }
#
# server {
# listen localhost:143;
# protocol imap;
# proxy on;
# }
#}
2023-09-08 17:06:32 +08:00
回复了 chenli100681 创建的主题 程序员 求助 nginx 相关问题! v2er 救救孩子吧!呜呜呜!
@sadfQED2 #12 我想回复您图片,但 v2 说我是太新的用户不让发。麻烦您看一下我帖子最后一行里面最后一张图片?nginx.conf 里面我路径写了/home/()/web/webpage 了,应该不会错,查了好久,呜呜,感谢!
2023-09-08 16:58:23 +08:00
回复了 chenli100681 创建的主题 程序员 求助 nginx 相关问题! v2er 救救孩子吧!呜呜呜!
@Asakijz #5 我读书少,怎么感觉不太对劲
2023-09-08 16:56:48 +08:00
回复了 chenli100681 创建的主题 程序员 求助 nginx 相关问题! v2er 救救孩子吧!呜呜呜!
@yzding #2 okok ,我去看看去,首先感谢大佬!
2023-09-08 16:56:29 +08:00
回复了 chenli100681 创建的主题 程序员 求助 nginx 相关问题! v2er 救救孩子吧!呜呜呜!
@clickhouse #3 reload 过了,然后第二点我先去谷歌一下你说的啥意思(我比较菜)但我用的命令是这个 acme.sh --issue --server letsencrypt --test -d 二级域名.你的域名.com -w /home/vpsadmin/www/webpage --keylength ec-256
感谢大佬!
2023-09-08 16:54:58 +08:00
回复了 chenli100681 创建的主题 程序员 求助 nginx 相关问题! v2er 救救孩子吧!呜呜呜!
@defunct9 #4 逆天
2023-09-08 16:54:40 +08:00
回复了 chenli100681 创建的主题 程序员 求助 nginx 相关问题! v2er 救救孩子吧!呜呜呜!
@OceanBreeze #1 sudo systemctl reload 我都敲烂了,呜呜呜
2023-09-08 16:04:56 +08:00
回复了 chenli100681 创建的主题 程序员 请教一下 github 学生包的问题
@4usy 专业!感谢!
2023-09-08 16:04:37 +08:00
回复了 chenli100681 创建的主题 程序员 请教一下 github 学生包的问题
@sickoo 我就是校园网,可能不同学校不一样?
2023-09-01 18:54:00 +08:00
回复了 chenli100681 创建的主题 程序员 请教一下 github 学生包的问题
@4usy 我突然又想到一个问题,就是我不挂代理注册通过了,以后登录可以挂梯子吗?会不会因为这种 ip 变动被风控?或者说因为梯子一般是机房 ip 会风控?
2023-09-01 11:51:58 +08:00
回复了 chenli100681 创建的主题 程序员 请教一下 github 学生包的问题
@4usy 呐,这个就叫专业.jpg
2023-08-31 22:19:44 +08:00
回复了 chenli100681 创建的主题 程序员 请教一下 github 学生包的问题
@Memoriae 好的好的,听君一席话,胜读十年书,感谢!
2023-08-31 21:53:38 +08:00
回复了 chenli100681 创建的主题 程序员 请教一下 github 学生包的问题
@Memoriae 感谢!有一点不是很明白,挂学校代理是指用学校 vpn 或校园网进 Azure?原理和 github 学生包申请时要求获得地址,查看你是否在学校一个道理?还有因为学生,信用卡是父母的,要填父母真实信息喽?还是说因为你是学生包,连信用卡都最好是你学生本人的呢?
2023-08-18 19:30:28 +08:00
回复了 Kiry 创建的主题 VPS 小白求一个 vps 服务商
@northbrunv 小白我一直有个疑问。我选 cn2 gia 是因为本地到 vps 线路好,但如果用便宜中转鸡,本地到中转鸡线路不应该很差吗?根据木桶理论,反正一般国内到国外线路不是很好,那即使中转机到落地机线路好也没啥用吧?希望大佬解惑,感谢!
2023-08-14 20:29:54 +08:00
回复了 chenli100681 创建的主题 程序员 非计算机相关专业小白向大佬们真诚发问
@rev1si0n ok ,谢谢,但我感觉 Linux 命令死记是不是太残暴了?我用到的时候稍微查一下,哈哈
2023-08-14 11:50:29 +08:00
回复了 chenli100681 创建的主题 程序员 非计算机相关专业小白向大佬们真诚发问
@tiezlk443 Ok,ok 感谢!
2023-08-14 11:49:37 +08:00
回复了 chenli100681 创建的主题 程序员 非计算机相关专业小白向大佬们真诚发问
@wcnmm 你这么说我就放心了[doge],确实是花钱换时间,我其实还是闲的才会关心这方面哈哈
2023-08-14 11:48:22 +08:00
回复了 chenli100681 创建的主题 程序员 非计算机相关专业小白向大佬们真诚发问
@miku8miku 知乎上直接搜就有,但我感觉知乎上不少回答都有点危言耸听
2023-08-14 11:47:50 +08:00
回复了 chenli100681 创建的主题 程序员 非计算机相关专业小白向大佬们真诚发问
@TerryRobles 最理想目标是能玩玩软路由,安卓 root 也玩玩吧,然后试着想楼上给的建议搭个 mc 私服?哈哈,然后我大学生也确实有时间折腾吧。你让我研究计算机里面最核心的算法啥的(我是这样认为的哈)我也没那个智力和毅力,毕竟不靠这个吃饭。大佬有什么建议吗,感谢!
2023-08-13 10:03:01 +08:00
回复了 chenli100681 创建的主题 程序员 非计算机相关专业小白向大佬们真诚发问
@tiezlk443 哈哈,我觉得自己说的确实也很杂,其实都是围绕科学上网的
1  2  3  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5589 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 24ms · UTC 08:21 · PVG 16:21 · LAX 00:21 · JFK 03:21
Developed with CodeLauncher
♥ Do have faith in what you're doing.