您好,欢迎访问一九零五行业门户网

APM Express(apache+php+mysql)以及nginx的服务器配置

apm expres:c:\apmxe\etc目录下的httpd.conf.template配置文件
include %apmxe%\etc\php.conf
//端口默认是9000
documentroot e:/flexwork_bin/kungfu/
    servername 127.0.0.1
options indexes followsymlinks
        indexoptions fancyindexing foldersfirst namewidth=* versionsort xhtml
allowoverride all
order allow,deny
        allow from all
nginx:e:\nginx-1.1.1\conf的nginx.conf配置文件
server {
        listen       80;//端口为80
        server_name  localhost;
#charset koi8-r;
#access_log  logs/host.access.log  main;
location / {
            root   e:/flexwork_bin/kungfu/;
            index  index.html index.htm;
        }
两个服务器可同时启动
其它类似信息

推荐信息