使用Nginx搭建HTML静态网站

Nginx (engine x) 是一个高性能的HTTP和反向代理服务,也是一个IMAP/POP3/SMTP服务。Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рамблер)开发的。
我们可以用这款软件搭建一个HTML静态的网站,且性能还不错;

首先先对系统进行更新
1
# yum -y update
然后创建一个nginx的软件源
1
2
# touch /etc/yum.repos.d/nginx.repo
# vi /etc/yum.repos.d/nginx.repo

接着把这段写到nging.repo里面并执行Nginx的安装

1
2
3
4
5
6
7
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/mainline/OS/OSRELEASE/$basearch/
gpgcheck=0
enabled=1
接着保存
:wq!

1
2
3
4
5
baseurl=http://nginx.org/packages/mainline/OS/OSRELEASE/$basearch/中的/OS/OSRELEASE需替换成当前的系统和版本,例如Centos7,那么OS需要改成centos,OSRELEASE需要改成7即可

接着就可以直接安装Nginx了

# yum -y install nginx

然后对nginx进行配置,配置前要先关闭SELinux

1
#vi /etc/selinux/config

然后开始配置Nginx文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
user  nginx;
worker_processes 1;

error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;


events {
worker_connections 1024;
}


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

log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';

access_log /etc/nginx/logs/access.log main; //Log存放位置
sendfile on;
#tcp_nopush on;

keepalive_timeout 65;

#gzip on;

server {
listen 82; //外网访问的端口
server_name daishenghui.tk; //域名

#charset koi8-r;
#access_log /etc//nginx/logs/access.log main;

location / {
root /www/myblog/public; //静态文件存储的位置
index index.html index.htm; //index文件类型
}

#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 html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$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;
#}
}


include /etc/nginx/conf.d/*.conf;

然后保存并退出,重启Nginx后输入网址daishenghui.tk:82测试下是否显示正常

1
2
3
systemctl restart nginx
或者
service nginx restart

以上是我搭建HEXO的配置,这个时候我发现虽然可以访问,但是页面排版是错的,于是排查了好久才发现是一个叫做不蒜子的统计系统域名换了,导致排版出错,但是理论上统计系统无法访问跟CSS没关系的,不过我改掉这个不蒜子后发现正常了

1
vi www/blog/themes/black-blue/layout/_partial/after-footer.ejs

把 《script async src=”https://dn-lbstatics.qbox.me/busuanzi/2.3/busuanzi.pure.mini.js"》里面的https到js
换成//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js即可。

更换完后,可能需要使用以下命令来清除下数据缓存然后再重新生成HTML静态文件

1
2
3
4
5
# hexo clean
# hexo g
# systemctl restart nginx
或者
# service nginx restart

关注我的公众号吧~戴戴的Linux

文章目录
  1. 1. 首先先对系统进行更新
  2. 2. 然后创建一个nginx的软件源


本站总访问量 本文总阅读量