优化子域名访问
最美主页&首页 eksnotebook.com
图床 img.eksnotebook.com
文件 nas.eksnotebook.com
博客 wiki.eksnotebook.com
nginx优化配置
基于文章手动cerbot安全访问nginx+ubuntu优化了nginx配置
-
图床-
etc/nginx/conf.d/img.conf
server {
#...
server_name img.img.eksnotebook.com;
#...
}
server{
#...
server_name img.img.eksnotebook.com;
#...
root /blog/images;
location /images {
alias /blog/images;
# autoindex on;
}
} -
文件-
etc/nginx/conf.d/nas.conf
server {
#...
server_name nas.img.eksnotebook.com;
#...
}
server{
#...
server_name nas.img.eksnotebook.com;
#...
root /blog/nas;
location /nas {
index index.html index.htm;
}
} -
最美主页&首页
etc/nginx/conf.d/page.conf
server {
#...
server_name img.eksnotebook.com www.img.eksnotebook.com;
#...
}
server{
#...
server_name img.eksnotebook.com www.img.eksnotebook.com ;
#...
root /blog/page;
location /page {
index index.html index.htm;
}
}
-
博客-
etc/nginx/conf.d/wiki.conf
server {
#...
server_name wiki.img.eksnotebook.com;
#...
}
server{
#...
server_name wiki.img.eksnotebook.com;
#...
root /blog/wiki/build;
location /wiki {
index index.html index.htm;
}
}