# -*- coding: utf-8 -*-

<VirtualHost *:8000>
    ServerName localhost:8000
    ServerAdmin webmaster@localhost

    DocumentRoot "/var/www/html"

    <Directory "/var/www/html">
        Options Indexes FollowSymLinks
        AllowOverride None
        Require all granted

        DirectoryIndex index.php

        <FilesMatch \.php$>
            SetHandler "proxy:fcgi://phpfpm:9000"
        </FilesMatch>
    </Directory>

    ErrorLog /proc/self/fd/2
</VirtualHost>