nginxconfig.io/public/templates/_php.conf.html

10 lines
410 B
HTML
Raw Normal View History

2018-01-07 15:30:12 +00:00
# index
index {{ data.index_html ? 'index.html ' : '' }}index.php;
# handle .php
location ~ \.php$ {<span ng-if="data.file_structure === 'separated'">
include _php_fastcgi.conf;
2018-01-08 07:28:51 +00:00
</span><span ng-if="data.file_structure === 'unified'">
<ng-include ng-include-tabs="{{ data.file_structure === 'unified' ? 3 : 1 }}" src="'templates/_php_fastcgi.conf.html'" onload="refreshHighlighting()"></ng-include></span>
2018-01-08 01:49:44 +00:00
}