Changed the nginx directives file and readded build.xml

This commit is contained in:
Abel Hoogeveen 2015-08-29 17:44:59 +02:00
parent f73f638b2b
commit 714ac95ef8
2 changed files with 44 additions and 8 deletions

36
build.xml Normal file
View File

@ -0,0 +1,36 @@
<project name="FuzeWorks" default="build" basedir=".">
<target name="clean">
<delete dir="${basedir}/build" />
</target>
<target name="prepare">
<mkdir dir="${basedir}/build/logs" />
<mkdir dir="${basedir}/build/clover" />
<mkdir dir="${basedir}/build/phpdoc" />
</target>
<target name="phpunit">
<exec dir="${basedir}" executable="php" failonerror="true">
<arg value="phpunit.phar"/>
<arg line="--configuration phpunit.xml
--log-junit build/logs/phpunit.xml
--coverage-clover build/logs/clover.xml
--coverage-html build/clover" />
</exec>
</target>
<target name="phpdoc">
<exec dir="${basedir}" executable="php" failonerror="yes">
<arg value="apigen.phar"/>
<arg line="generate --source . --destination 'build/phpdoc' --exclude 'tests/*','build/*','Core/System/Smarty/*','vendor/*' "/>
</exec>
</target>
<target name="zip">
<exec dir="${basedir}" executable="git" failonerror="true">
<arg line="archive -o ${basedir}/build/fuzeworks-core.zip HEAD" />
</exec>
</target>
<target name="build" depends="clean,prepare,phpunit,phpdoc,zip" />
</project>

View File

@ -1,9 +1,9 @@
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /fw/index.php?path=$1 last;
}
}
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /fw/index.php?path=$1 last;
}
}
location ~* (\.enc.cfg)$ {
return 404;
}
location ~* (\.enc.cfg)$ {
return 404;
}