ip和域名的问题
来源:11-6 Nginx 环境处理
入门级全栈专家
2022-01-17
老师我够买了一个云服务器和域名,按照你的步骤,现在ip可以访问页面,但是域名不行
nginx 配置如下
server {
# 端口
listen 80;
# 域名
server_name http://ldy666.top;
server_name http://ldy666.top;
# 资源地址
root /nginx/dist/;
# 目录浏览
autoindex on;
# 缓存处理
add_header Cache-Control "no-cache, must-revalidate";
# 请求配置
location / {
# 跨域
add_header Access-Control-Allow-Origin *;
# 返回 index.html
try_files $uri $uri/ /index.html;
}
}
server_name之所以去掉了 http://,是因为后面nginx reload的时候报了
nginx: [warn] server name "http://ldy666.top" has suspicious symbols in /nginx/nginx.conf:6
我查了下需要把http://去掉才能重启nginx,不知道为什么老师你的可以加http://
然后现在的问题是,去掉之后http://,可以重启成功,ip也可以访问成功,但是域名不行
1回答
-
Sunday
2022-01-18
你好
server_name 这里不需要专门添加 http 或者 https
这里是我 nginx 的配置,你可以参考下:
# 慕课网 imooc-admin
server {
#SSL 访问端口号为 443
listen 443 ssl;
#填写绑定证书的域名
server_name imooc-admin.lgdsunday.club;
#证书文件名称
ssl_certificate 1_imooc-admin.lgdsunday.club_bundle.crt;
#私钥文件名称
ssl_certificate_key 2_imooc-admin.lgdsunday.club.key;
ssl_session_timeout 5m;
#请按照以下协议配置
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
#请按照以下套件配置,配置加密套件,写法遵循 openssl 标准。
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
ssl_prefer_server_ciphers on;
root /sunday/imooc/admin/dist/;
#charset koi8-r;
access_log logs/host.access.log main;
location / {
# index index.html index.htm;
try_files $uri $uri/ /index.html;
}
# 反向代理,解决跨域问题(单独代理请求到服务端)
location /prod-api/ {
proxy_pass http://39.105.131.75:3004/api/;
# $host 变量,Host 为变量名
proxy_set_header Host $host; #域名转发
proxy_set_header X-Real-IP $remote_addr; #IP转发
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Cookie $http_cookie; # cookie 配置
}
}
00
相似问题