我已经阅读了文档,扫描了示例,但我一生都无法弄清楚为什么这不起作用。我对 nginx 完全陌生,所以如果这是一个愚蠢的简单答案,请放轻松。
user www-data;
worker_processes 4;
pid /var/run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
##
# Virtual Host Configs
##
#include /etc/nginx/conf.d/*.conf;
#include /etc/nginx/sites-enabled/*;
server {
listen 80;
server_name localhost domain.com;
root /home/TMlabs/server_files;
index index.html index.htm;
location = /othersite {
root /home/TMlabs/server_files/location2;
index index.html index.htm;
}
location / {
root /home/TMlabs/server_files/location1;
index index.html index.htm;
}
}
如果我需要包含更多内容,请告诉我,我将转储整个 nginx.conf。不过,这很基本。
我想要实现的只是将 domain.com 映射到 location 中指定的根/
(正在工作)并映射domain.com/othersite
到该指令中指定的根。出于某种原因,/home/TMlabs/server_files/location1/index.html
当我导航到domain.com/othersite
而不是index.html
文件/home/TMlabs/server_files/location2
夹中的文件时,它会返回文档。我尝试删除等号并使用可用于匹配的不同运算符,但似乎没有任何效果。这可能是我误解的一些非常基本的东西,对这些东西很陌生。我也很讨厌正则表达式。有人愿意开导吗?
编辑:我认为正在发生的事情是它实际上完全忽略了我的指令,只是/usr/share/nginx/www
用作文档根目录。我在任何地方都看不到这个配置;我错过了什么?