搭建好lnmp后,有时候并不需要直接访问index.php,配置其他的默认访问文件比如index.html这时候需要配置一下nginx才能访问到你想要设置的文件 直接上代码,如下是我的配置的一份简单的nginx到php-fpm的站点,该站点默认访问目录/ecmoban/www/index.html server { listen 80; location / { root /ecmoban/www; index index.html index.php index.htm; } error_pa…
frontend->config->main-local.php $config = [ 'defaultRoute' => 'index/index',//修改默认访问控制器 'components' => [ 'request' => [ // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation /*___*/ 'enableCo…
修改默认日志位置 我们平常的开发中可能一直把laravel的日志文件放在默认位置不会有什么影响,但如果我们的项目上线时是全量部署,每次部署都是git中最新的代码,那这个时候每次都会清空我们的日志,显示这不是我们所期望的,好在laravel有提供我们修改的方法. 我们这里以放在/var/log/nginx/app/phphub/phphub.log为例 增加日志处理类# 首先我们新建文件,app/Foundation/Bootstrap/ConfigureLogging.php,代码如下: <?p…
1.项目发布路径 <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"> tomcat默认的而发布路径为 tomcat/webapps/目录,但是这个目录下有一些默认的项目,在tomcat启动的时候会跟着一起加载.如果不想删除这些项目,可以把tomcat发布的路径修改到其他地方. webapps:存放web应用 找到…
参考: 1. 利用Java反射机制改变SharedPreferences存储路径    Singleton1900 2. Android快速开发系列 10个常用工具类 Hongyang import android.app.Activity; import android.content.Context; import android.content.ContextWrapper; import android.content.SharedPreferences; import com.imag…
方法一: [root@bogon ~]# vi /etc/systemd/system.conf [root@bogon ~]# cat /etc/systemd/system.conf # This file is part of systemd. # # systemd is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public Li…
import android.app.Activity; import android.content.Context; import android.content.ContextWrapper; import android.content.SharedPreferences; import com.imageviewpager.language.MyApplication; import java.io.File; import java.lang.reflect.Field; impor…
环境: 1.两台Win10电脑 2.MySql5.6 过程: 1.原电脑停止MySql服务 2.复制C:\ProgramData\MySQL\MySQL Server 5.6\data文件夹到目标电脑的D:\MysqlData 3.目标电脑停上MySql服务 4.修改目标电脑C:\Program Files (x86)\MySQL\MySQL Server 5.6\my.ini文件: datadir改为: datadir="D:/MySqlData/data/" 5.目标电脑D:/My…
1,安装完apache后,项目默认根路径是E:\Program Files\AppServ\www. 默认根路径在httpd.conf中默认配置过了,我们可以通过修改配置文件改变项目默认根路径. DocumentRoot "E:/PROGRA~1/AppServ/www" <Directory "E:/PROGRA~1/AppServ/www"> # # Possible values for the Options directive are &quo…
找到conf下server.xml文件修改如下位置内容 <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"> <Context path="" docBase="webapp下的项目名" debug="0" reloadable="true…