forked from SchoolTARMaster/eaglercraft-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapache.conf
More file actions
21 lines (21 loc) · 783 Bytes
/
apache.conf
File metadata and controls
21 lines (21 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
User runner
Group runner
<VirtualHost *:8080>
DocumentRoot "/home/runner/eaglercraft-server/web"
ServerRoot "/home/runner/eaglercraft-server/web"
<Directory "/home/runner/eaglercraft-server/web">
Options Indexes FollowSymLinks
Require all granted
DirectoryIndex index.html
</Directory>
LoadModule mpm_worker_module modules/mod_mpm_worker.so
LoadModule unixd_module modules/mod_unixd.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule dir_module modules/mod_dir.so
ErrorLog logs/logs.log
CustomLog logs/access.log combined
</VirtualHost>
ServerName localhost:8080
Listen 0.0.0.0:8080