当前位置:   article > 正文

09-基于Nginx发布静态资源

nginx发布文件夹

使用Nginx发布静态资源

找一些静态资源, 上传拿到服务器, 我就直接拿老师的了

上传完成

配置nginx.conf

进入nginx/conf文件夹, 创建独立配置文件

vi staticfile.conf

编写路由映射

  1. server {
  2. listen 90;
  3. server_name localhost;
  4. location / {
  5. root /home;
  6. }
  7. }

在配置里面导入自己写的配置

  1. [root@localhost conf]# cd ../
  2. [root@localhost nginx]# cd sbin/
  3. [root@localhost sbin]# ./nginx -t
  4. nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
  5. nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
  6. [root@localhost sbin]# ./nginx -s reload
  7. [root@localhost sbin]#

检查配置文件并重启

直接在根路径后添加资源路径就可以访问了

但是这样做存在一个问题, 那就是会对外暴露真实的磁盘资源

修改配置文件

  1. server {
  2. listen 90;
  3. server_name localhost;
  4. location / {
  5. root /home;
  6. }
  7. # 添加新的别名映射, 为了和之前的对比, 就没有删除上面的
  8. location /static {
  9. alias /home;
  10. }
  11. }

检查重启

也是可以访问的, 这样如果不是/home,而是有很长的路基都可以写在别名里面, 这样就不会对外暴露真实路径了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/232396
推荐阅读
相关标签
  

闽ICP备14008679号