Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What language is used in apache files?

What is the name of the language used in apache files like httpd.conf and virtual hosts e.g.

# Ensure that Apache listens on port 80
Listen 80
<VirtualHost *:80>
    DocumentRoot "/www/example1"
    ServerName www.example.com

    # Other directives here
</VirtualHost>
like image 448
neoDev Avatar asked Oct 17 '25 21:10

neoDev


2 Answers

Probably greatest highlighting setups for IDE (if you mean that purpose) are:

  • Tcl for .conf files
  • Lisp for .ini files
like image 113
Lubomír Pařil Avatar answered Oct 20 '25 23:10

Lubomír Pařil


The official documentation refers to them as "httpd configuration file" or just "configuration file". I don't think there is a more specific name than that.

like image 41
str Avatar answered Oct 21 '25 01:10

str