The directory structure of the website is:
-
# tree /home/wwwroot/linuxeye.com
-
/home/wwwroot/linuxeye.com
-
├── bbs
-
│ └── index.html
-
└── www
-
└── index.html
-
-
2 directories, 2 files
/home/wwwroot/linuxeye.com is the default path to store the source code in the nginx installation directory.
bbs is the source code path of the forum program; www is the source code path of the homepage program; put the corresponding program into the above path and pass; http://www.linuxeye.com visits the homepage http://bbs.linuxeye.com It is a forum, and other second-level domain names can be analogized.
There are 2 methods, recommended method 1
Method 1:
-
server {
-
listen 80;
-
server_name ~^(?.+).linuxeye.com$;
-
access_log /data/wwwlogs/linuxeye.com_nginx.log combined;
-
index index.html index.htm index.php;
-
root /home/wwwroot/linuxeye/$subdomain/;
-
-
location ~ .php$ {
-
fastcgi_pass unix:/dev/shm/php-cgi.sock;
-
fastcgi_index index.php;
-
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
-
include fastcgi_params;
-
}
-
-
location ~ .*\.(gif|jpg|jpeg|png|bmp |swf|flv|ico)$ {
-
expires 30d;
-
}
-
-
location ~ .*\.(js css)?$ {
-
expires 7d;
-
}
-
}
Method Two:
-
server {
-
listen 80;
-
server_name *.linuxeye.com;
-
access_log /home/wwwlogs/linuxeye.com_nginx.log combined;
-
index index.html index.htm index.php;
-
-
if ($host ~* ^([^\ .]+)\.([^\.]+\.[^\.]+)$) {
-
set $subdomain $1;
-
set $domain $2;
-
}
-
-
location / {
-
root /home/wwwroot/linuxeye.com/$subdomain/;
-
index index.php index.html index.htm;
-
}
-
-
location ~ .php$ {
-
fastcgi_pass unix:/dev/shm/php-cgi.sock;
-
fastcgi_index index.php;
-
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
-
include fastcgi_params;
-
}
-
-
location ~ .*\.(gif|jpg|jpeg|png|bmp |swf|flv|ico)$ {
-
expires 30d;
-
}
-
-
location ~ .*\.(js css)?$ {
-
expires 7d;
-
}
-
}