在上一文中我们讲了怎么在CentOS8的系统中安装Nginx。这次我们来讲讲怎么配置Nginx使得其能正常工作实现其基础功能
下面就直接上干货:
1、普通网站部署
首先转到nginx的安装路径下,我这里的安装路径是/usr/local/nginx所以执行以下命令
cd /usr/local/nginx
因为我的安装路径的问题,我的所有对文件的操作都需要root权限,所以我的写操作的指令都将以sudo开头。
在我们安装nginx的时候我们指定了配置文件的名称为Nginx.conf(参考安装篇)这里打开这个文件使用以下指令
sudo vi ./nginx.conf
可以看到此时打开的是一个默认的配置文件配置内容如下
#user nobody;#配置用户或者组
worker_processes 1;#允许生成的进程数
#制定日志路径,级别。这个设置可以放入全局块,http块,server块,级别以此为:debug|info|notice|warn|error|crit|alert|emerg
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid; #指定nginx进程运行文件存放地址
events {
worker_connections 1024;#最大连接数
}
http {
include 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 logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;#连接超时时间
#gzip on;
#这里是默认网站localhost的配置方式
server {
listen 80;#监听端口为80
server_name localhost;#这里一般为电脑的IP地址
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;#这里是应用程序的路径
index index.html index.htm;#这里指定启动的页面文件
}
#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 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;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
那么如果我们要设置一个自己的网站该怎么办呢?
假如我们有一个Vue写的应用程序,我们需要将其发布后得到的dist文件夹改名为vuetest,我们讲其设置为端口为82的网站
那么我们只需要在配置文件中添加一段server{}的代码即可
server {
listen 82;
server_name localhost;
location / {
root html/WebApps;
try_files $uri $uri/ @router;
index index.html index.htm;
}
}
此时我们就可以通过localhost:82访问我们的应用了
添加子应用
比如我们想要通过localhost:82/v访问我们的其它应用
配置如下
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
location /v/ {
root html/WebApps;
index index.html index.htm;
}
注意:这里有个比较坑的地方是使用root 他对应的文件路径是 html/WebApps/v/里面的