mirror of
https://github.com/pterodactyl/documentation.git
synced 2025-12-10 09:17:40 -06:00
Co-authored-by: Daniel Barton <danielb@purpleflaghosting.com> Co-authored-by: Louis Ravignot Dos Santos <louis.rds@akticube.fr>
16 lines
407 B
Plaintext
16 lines
407 B
Plaintext
<VirtualHost *:80>
|
|
# Replace the example <domain> with your domain name or IP address
|
|
ServerName <domain>
|
|
DocumentRoot "/var/www/pterodactyl/public"
|
|
|
|
AllowEncodedSlashes On
|
|
|
|
php_value upload_max_filesize 100M
|
|
php_value post_max_size 100M
|
|
|
|
<Directory "/var/www/pterodactyl/public">
|
|
AllowOverride all
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|