nginx配置vhost例子
程序员文章站
2022-06-03 20:51:22
...
nginx下面几个配置vhost的例子
php
php
server {
server_name stage.localhost;
listen80 ;
root /data;
indexindex.html index.htm index.php;
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /data$fastcgi_script_name;
include fastcgi_params;
}
}
静态文件
server {
server_name sms.fake;
listen 80;
root /data/fakesms;
index mobile1.html mobile1b.html;
}
其他语言开发的server服务
server {
listen 80;
server_name localhost.pythonserver;
access_log /var/log/nginx/pythonserver-access.log ;
error_log /var/log/nginx/pythonserver-error.log ;
charset utf-8;
client_max_body_size 100m;
client_body_timeout 60;
location /exam0/ {
proxy_pass http://127.0.0.1:8889;
}
location /exam1/ {
proxy_pass http://127.0.0.1:8880;
}
location /exam2/ {
proxy_pass http://127.0.0.1:8881;
}
}
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i ').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了nginx配置vhost例子,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
推荐阅读
-
MySQL 配置文件my.cnf 例子最详细翻译
-
Laravel 5.5官方推荐的Nginx配置学习教程
-
在CentOS上配置Nginx+Gunicorn+Python+Flask环境的教程
-
bootstrap table配置参数例子
-
Nginx DNS resolver配置实例
-
分析nginx日志并屏蔽采集者ip(nginx屏蔽ip配置实例)
-
nginx跨域解决方案(教你nginx如何配置跨域)
-
nginx配置反向代理和负载均衡(nginx功能介绍和使用)
-
在阿里云服务器上配置CentOS+Nginx+Python+Flask环境
-
nginx配置反向代理和负载均衡(nginx功能介绍和使用)