nginx alias和root

发布时间:2023年12月29日

nginx 目录:
[root@zz conf]# ls -ltr /root/www/backoffice/
total 4
-rwxrwxrwx 1 755 root 18 Dec 29 22:20 index.html

? server {
? ? ? ? listen ? ? ? 8080;
? ? ? ? server_name ?localhost;

? ? ? ? #charset koi8-r;

? ? ? ? access_log ?logs/host.access.log ?main;

? ? ? ? location /backoffice {
? ? ? ? ? ? root ? ?/root/www;
? ? ? ? ? ? index ?index.html index.htm;
? ? ? ? }
?? ??? ?
?? ??? ?
[root@zz sbin]# curl http://192.168.137.200:8080/backoffice/
aaaaaaaa
bbbbbbbb

----------------------------------------------------------------------

location / {
? ? ? ? ? ? alias ? ?/root/www/;
? ? ? ? ? ? index ?index.html index.htm;
? ? ? ? }
?? ??? ?

[root@zz sbin]# curl http://192.168.137.200:8080/backoffice/
aaaaaaaa
bbbbbbbb


[root@zz sbin]# ls -ltr /root/www/backoffice/
total 4
-rwxrwxrwx 1 755 root 18 Dec 29 22:20 index.html
[root@zz sbin]#?

文章来源:https://blog.csdn.net/zhaoyangjian724/article/details/135291161
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。