# Example

```bash
<VirtualHost *:80>
        #nom de domaine
    ServerName monsite
        #logs d'erreur
    ErrorLog /var/www/monsite.dev/logs/error.log 
        #logs de connexion
    CustomLog /var/www/monsite.dev/logs/access.log common

        #Définition de la racine des sources php
    DocumentRoot "/var/www/monsite.dev/web"

    <Directory "/var/www/monsite.dev/web">
        Options Indexes MultiViews
           Order allow,deny
            Allow from all
            # New directive needed in Apache 2.4.3: 
           require all granted
    </Directory>
</VirtualHost>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.webrush.fr/linux/solus/virtualhost/monsite.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
