PluginProbe
Code Block Pro – Beautiful Syntax Highlighting / 1.27.7
Code Block Pro – Beautiful Syntax Highlighting v1.27.7
1.27.1 1.27.2 1.27.3 1.27.4 1.27.5 1.27.6 1.27.7 1.28.0 1.3.0 1.4.0 1.5.0 1.5.1 1.5.2 1.6.0 1.7.0 1.8.0 1.9.0 1.9.1 1.9.2 1.9.3 trunk 1.1.0 1.10.0 1.11.0 1.11.1 All 63 releases
code-block-pro / build / shiki / samples / apache.sample

apache.sample in Code Block Pro – Beautiful Syntax Highlighting 1.27.7, at build/shiki/samples/apache.sample

40 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 # Apache httpd v2.4 minimal configuration
2 # see https://wiki.apache.org/httpd/Minimal_Config for documentation
3
4 ServerRoot ${GITPOD_REPO_ROOT}
5
6 PidFile ${APACHE_PID_FILE}
7 User ${APACHE_RUN_USER}
8 Group ${APACHE_RUN_GROUP}
9
10 # Modules as installed/activated via apt-get
11 IncludeOptional /etc/apache2/mods-enabled/*.load
12 IncludeOptional /etc/apache2/mods-enabled/*.conf
13
14 # Configure hostname and port for server
15 ServerName ${APACHE_SERVER_NAME}
16 Listen *:8080
17
18 # Configure Logging
19 LogFormat "%h %l %u %t \"%r\" %>s %b" common
20 CustomLog ${APACHE_LOG_DIR}/access.log common
21 ErrorLog ${APACHE_LOG_DIR}/error.log
22
23 # Never change this block
24 <Directory />
25 AllowOverride None
26 Require all denied
27 </Directory>
28
29 # Direcrory and files to be served
30 DirectoryIndex index.html
31 DocumentRoot "${GITPOD_REPO_ROOT}/www"
32 <Directory "${GITPOD_REPO_ROOT}/www">
33 Require all granted
34 </Directory>
35
36 # Include conf installed via apt-get
37 IncludeOptional /etc/apache2/conf-enabled/*.conf
38
39 # https://github.com/gitpod-io/apache-example/blob/master/apache/apache.conf
40