Compare commits
2 Commits
499adf4b08
...
7b82023198
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7b82023198 | ||
|
|
ef04c9ed79 |
@ -4,10 +4,10 @@
|
|||||||
<option name="directories">
|
<option name="directories">
|
||||||
<list>
|
<list>
|
||||||
<option value="$PROJECT_DIR$/app/tests" />
|
<option value="$PROJECT_DIR$/app/tests" />
|
||||||
<option value="$PROJECT_DIR$/code-New/tests/Unit" />
|
|
||||||
<option value="$PROJECT_DIR$/code-New/tests/Feature" />
|
|
||||||
<option value="$PROJECT_DIR$/code/tests/Unit" />
|
<option value="$PROJECT_DIR$/code/tests/Unit" />
|
||||||
<option value="$PROJECT_DIR$/code/tests/Feature" />
|
<option value="$PROJECT_DIR$/code/tests/Feature" />
|
||||||
|
<option value="$PROJECT_DIR$/code-New/tests/Unit" />
|
||||||
|
<option value="$PROJECT_DIR$/code-New/tests/Feature" />
|
||||||
</list>
|
</list>
|
||||||
</option>
|
</option>
|
||||||
</component>
|
</component>
|
||||||
|
|||||||
@ -27,6 +27,10 @@ COPY docker/php/php-prod.ini /usr/local/etc/php/conf.d
|
|||||||
|
|
||||||
COPY start.sh /home/start.sh
|
COPY start.sh /home/start.sh
|
||||||
|
|
||||||
|
ENV TZ=Europe/Moscow
|
||||||
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||||||
|
RUN printf '[Date]\ndate.timezone="%s"\n', $TZ > /usr/local/etc/php/conf.d/tzone.ini
|
||||||
|
|
||||||
#nginx
|
#nginx
|
||||||
ADD docker/nginx/default.conf /etc/nginx/conf.d/default.conf
|
ADD docker/nginx/default.conf /etc/nginx/conf.d/default.conf
|
||||||
COPY docker/nginx/nginx.conf /etc/nginx/nginx.conf
|
COPY docker/nginx/nginx.conf /etc/nginx/nginx.conf
|
||||||
|
|||||||
@ -23,6 +23,10 @@ COPY code/ /var/www
|
|||||||
|
|
||||||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
||||||
|
|
||||||
|
ENV TZ=Europe/Moscow
|
||||||
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||||||
|
RUN printf '[Date]\ndate.timezone="%s"\n', $TZ > /usr/local/etc/php/conf.d/tzone.ini
|
||||||
|
|
||||||
# Configure Xdebug
|
# Configure Xdebug
|
||||||
#RUN pecl install xdebug
|
#RUN pecl install xdebug
|
||||||
#RUN docker-php-ext-enable xdebug
|
#RUN docker-php-ext-enable xdebug
|
||||||
|
|||||||
@ -67,7 +67,7 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'timezone' => 'UTC',
|
'timezone' => 'Europe/Moscow',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|||||||
@ -130,9 +130,9 @@ return [
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
'include_files' => [
|
'include_files' => [
|
||||||
#'/var/www/storage/SynologySStoTelegram/**/*.log'
|
//'/var/www/storage/SynologySStoTelegram/**/*.log'
|
||||||
'/var/www/storage/*/*.log',
|
'/var/www/storage/*/*.log',
|
||||||
'/var/www/storage/synology/*.log'
|
//'/var/www/storage/synology/*.log'
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -144,7 +144,7 @@ return [
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
'exclude_files' => [
|
'exclude_files' => [
|
||||||
'laravel.log'
|
//'laravel.log'
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Binary file not shown.
3
code/test.php
Executable file
3
code/test.php
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
echo date('Y-m-d H:i:s');
|
||||||
Loading…
Reference in New Issue
Block a user