N
N
Nikolai Khokhlunov2016-08-04 14:14:01
Apache HTTP Server
Nikolai Khokhlunov, 2016-08-04 14:14:01

Apache config decryption. How does this example work?

There is a config:

<VirtualHost *:80>
        ServerAdmin [email protected]
        ServerAlias site.ru www.site.ru
        DocumentRoot /home/site/www/
        ErrorLog /home/site/logs/error.log
        CustomLog /home/site/logs/access.log combined
        LogLevel warn
        AssignUserId site site
        
    <Directory /home/site/www/>
        Options FollowSymLinks MultiViews
        Order deny,allow
        Allow from all
        Require all granted
    </Directory>
        
</VirtualHost>

the example works well, I copy it to a newly deployed server, of course it doesn’t work, the question is, what modules and settings does this config use for its work?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question