紫影基地

 找回密码
 立即注册
查看: 310|回复: 0

nginx配置二级目录

[复制链接]
阅读字号:

2002

主题

2117

帖子

21万

积分

超级版主

Rank: 8Rank: 8

积分
210303
发表于 2021-12-24 20:19:43 | 显示全部楼层 |阅读模式
    在路径/etc/nginx/sites-enabled或者/etc/nginx/sites-available下找到default文件
    打开default文件:

  1.         ##
  2.         # You should look at the following URL's in order to grasp a solid understanding
  3.         # of Nginx configuration files in order to fully unleash the power of Nginx.
  4.         # http://wiki.nginx.org/Pitfalls
  5.         # http://wiki.nginx.org/QuickStart
  6.         # http://wiki.nginx.org/Configuration
  7.         #
  8.         # Generally, you will want to move this file somewhere, and start with a clean
  9.         # file but keep this around for reference. Or just disable in sites-enabled.
  10.         #
  11.         # Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
  12.         ##
  13.         
  14.         # Default server configuration
  15.         #
  16.         server {
  17.                 listen 80 default_server;
  18.                 listen [::]:80 default_server;
  19.         
  20.                 # SSL configuration
  21.                 #
  22.                 # listen 443 ssl default_server;
  23.                 # listen [::]:443 ssl default_server;
  24.                 #
  25.                 # Note: You should disable gzip for SSL traffic.
  26.                 # See: https://bugs.debian.org/773332
  27.                 #
  28.                 # Read up on ssl_ciphers to ensure a secure configuration.
  29.                 # See: https://bugs.debian.org/765782
  30.                 #
  31.                 # Self signed certs generated by the ssl-cert package
  32.                 # Don't use them in a production server!
  33.                 #
  34.                 # include snippets/snakeoil.conf;
  35.         
  36.                 root /var/www/html;
  37.         
  38.                 # Add index.php to the list if you are using PHP
  39.                 index index.html index.htm index.nginx-debian.html;
  40.         
  41.                 server_name _;
  42.         
  43.                 location / {
  44.                         # First attempt to serve request as file, then
  45.                         # as directory, then fall back to displaying a 404.
  46.                         try_files $uri $uri/ =404;
  47.                 }
  48.         
  49.                 location /top {
  50.             alias /var/www/html/top;
  51.             index index.html index.htm;
  52.             try_files $uri $uri/ =404;
  53.         }
  54.         
  55.                 # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  56.                 #
  57.                 #location ~ \.php$ {
  58.                 #        include snippets/fastcgi-php.conf;
  59.                 #
  60.                 #        # With php7.0-cgi alone:
  61.                 #        fastcgi_pass 127.0.0.1:9000;
  62.                 #        # With php7.0-fpm:
  63.                 #        fastcgi_pass unix:/run/php/php7.0-fpm.sock;
  64.                 #}
  65.         
  66.                 # deny access to .htaccess files, if Apache's document root
  67.                 # concurs with nginx's one
  68.                 #
  69.                 #location ~ /\.ht {
  70.                 #        deny all;
  71.                 #}
  72.         }
  73.         
  74.         
  75.         # Virtual Host configuration for example.com
  76.         #
  77.         # You can move that to a different file under sites-available/ and symlink that
  78.         # to sites-enabled/ to enable it.
  79.         #
  80.         #server {
  81.         #        listen 80;
  82.         #        listen [::]:80;
  83.         #
  84.         #        server_name example.com;
  85.         #
  86.         #        root /var/www/example.com;
  87.         #        index index.html;
  88.         #
  89.         #        location / {
  90.         #                try_files $uri $uri/ =404;
  91.         #        }
  92.         #}

复制代码

注意这部分内容

  1. location /top {
  2.             alias /var/www/html/top;
  3.             index index.html index.htm;
  4.             try_files $uri $uri/ =404;
  5.         }
复制代码

    重启nginx:
    在x-shell中输入命令nginx -s reload
    在网页中打开网址http://127.0.0.1/top/


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|紫影基地

GMT+8, 2025-1-12 09:56 , Processed in 0.083038 second(s), 19 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表