-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Edits to the documentation #553
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
82ee8d5
Use packages instead of the installer as not supported
PadowYT2 d5b51d8
Change the branch as the develop branch doesn't have the file
PadowYT2 3166800
Use "1.0-develop" branch instead of a release version
PadowYT2 28ab8d3
Add sudo to apt commands
PadowYT2 995e1a0
Merge branch 'pterodactyl:master' into master
PadowYT2 c6b8647
Update sponsors
PadowYT2 7d885a0
Avoid having to update the license each year
PadowYT2 fb785bb
Actually use a note
PadowYT2 04af6c4
Remove useless commas
PadowYT2 f8e5cf2
Remove empty white lines in non SSL configs
PadowYT2 830d6fc
Remove useless comment as it exists on the Documentation
PadowYT2 12be1f7
Use 4 spaces instead of 2 for apache configs
PadowYT2 328aed4
Modify the links in the banner
PadowYT2 34c5e10
Update getting_started.md
PadowYT2 b4f0d9d
Merge branch 'master' into master
danny6167 e2846f1
Add robots noindex tag to all panel 0.7 and daemon 0.6 pages
danny6167 96fd0dc
Add missing change for noindex
danny6167 73917cf
Revert "Use packages instead of scripts for installing NodeJS (#542)"
danny6167 e9744ec
Update PHP versions
danny6167 91ec18d
Update panels supported OS versions
danny6167 d9c77aa
Fix some PHP version formatting issues
danny6167 c304ab6
Revert "Remove useless comment as it exists on the Documentation"
danny6167 295a7dd
Update to PHP 8.3
danny6167 9770255
Update some wordings
danny6167 3b584ac
Specify the php version when installing the apache php module
danny6167 5069e66
Add some missing comments and correct highlighting in conf blocks
danny6167 77f91ca
Update wings OS Support table
danny6167 804fce4
Don't show warning about running composer as root
danny6167 7bf4332
Remove list and just link to the docker-ce install page
danny6167 6eaf9c9
Update support table on wings upgrade page
danny6167 3692541
Update panel upgrade version support and PHP versions
danny6167 30cbd95
Update php upgrade guide
danny6167 2cb2ae6
Add sudo to nodejs installation
PadowYT2 3850dad
Add CentOS forks (i think) to nodejs installation
PadowYT2 9e3333d
Update tables to match the spacing
PadowYT2 99667c5
Add sudo to systemctl enable --now wings
LouissXI 4321a62
Format tables
PadowYT2 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
<VirtualHost *:80> | ||
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> | ||
# 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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
<VirtualHost *:80> | ||
ServerName <domain> | ||
|
||
RewriteEngine On | ||
RewriteCond %{HTTPS} !=on | ||
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] | ||
# Replace the example <domain> with your domain name or IP address | ||
ServerName <domain> | ||
|
||
RewriteEngine On | ||
RewriteCond %{HTTPS} !=on | ||
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] | ||
</VirtualHost> | ||
|
||
<VirtualHost *:443> | ||
ServerName <domain> | ||
DocumentRoot "/var/www/pterodactyl/public" | ||
# Replace the example <domain> with your domain name or IP address | ||
ServerName <domain> | ||
DocumentRoot "/var/www/pterodactyl/public" | ||
|
||
AllowEncodedSlashes On | ||
|
||
AllowEncodedSlashes On | ||
|
||
php_value upload_max_filesize 100M | ||
php_value post_max_size 100M | ||
php_value upload_max_filesize 100M | ||
php_value post_max_size 100M | ||
|
||
<Directory "/var/www/pterodactyl/public"> | ||
Require all granted | ||
AllowOverride all | ||
</Directory> | ||
<Directory "/var/www/pterodactyl/public"> | ||
Require all granted | ||
AllowOverride all | ||
</Directory> | ||
|
||
SSLEngine on | ||
SSLCertificateFile /etc/letsencrypt/live/<domain>/fullchain.pem | ||
SSLCertificateKeyFile /etc/letsencrypt/live/<domain>/privkey.pem | ||
SSLEngine on | ||
SSLCertificateFile /etc/letsencrypt/live/<domain>/fullchain.pem | ||
SSLCertificateKeyFile /etc/letsencrypt/live/<domain>/privkey.pem | ||
</VirtualHost> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
server { | ||
# Replace the example <domain> with your domain name or IP address | ||
listen 80; | ||
server_name <domain>; | ||
|
||
root /var/www/pterodactyl/public; | ||
index index.html index.htm index.php; | ||
charset utf-8; | ||
|
||
location / { | ||
try_files $uri $uri/ /index.php?$query_string; | ||
} | ||
|
||
location = /favicon.ico { access_log off; log_not_found off; } | ||
location = /robots.txt { access_log off; log_not_found off; } | ||
|
||
access_log off; | ||
error_log /var/log/nginx/pterodactyl.app-error.log error; | ||
|
||
# allow larger file uploads and longer script runtimes | ||
client_max_body_size 100m; | ||
client_body_timeout 120s; | ||
|
||
sendfile off; | ||
|
||
location ~ \.php$ { | ||
fastcgi_split_path_info ^(.+\.php)(/.+)$; | ||
fastcgi_pass unix:/run/php/php8.3-fpm.sock; | ||
fastcgi_index index.php; | ||
include fastcgi_params; | ||
fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M"; | ||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | ||
fastcgi_param HTTP_PROXY ""; | ||
fastcgi_intercept_errors off; | ||
fastcgi_buffer_size 16k; | ||
fastcgi_buffers 4 16k; | ||
fastcgi_connect_timeout 300; | ||
fastcgi_send_timeout 300; | ||
fastcgi_read_timeout 300; | ||
} | ||
|
||
location ~ /\.ht { | ||
deny all; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
server { | ||
# Replace the example <domain> with your domain name or IP address | ||
listen 80; | ||
server_name <domain>; | ||
return 301 https://$server_name$request_uri; | ||
} | ||
|
||
server { | ||
# Replace the example <domain> with your domain name or IP address | ||
listen 443 ssl http2; | ||
server_name <domain>; | ||
|
||
root /var/www/pterodactyl/public; | ||
index index.php; | ||
|
||
access_log /var/log/nginx/pterodactyl.app-access.log; | ||
error_log /var/log/nginx/pterodactyl.app-error.log error; | ||
|
||
# allow larger file uploads and longer script runtimes | ||
client_max_body_size 100m; | ||
client_body_timeout 120s; | ||
|
||
sendfile off; | ||
|
||
# SSL Configuration - Replace the example <domain> with your domain | ||
ssl_certificate /etc/letsencrypt/live/<domain>/fullchain.pem; | ||
ssl_certificate_key /etc/letsencrypt/live/<domain>/privkey.pem; | ||
ssl_session_cache shared:SSL:10m; | ||
ssl_protocols TLSv1.2 TLSv1.3; | ||
ssl_ciphers "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384"; | ||
ssl_prefer_server_ciphers on; | ||
|
||
# See https://hstspreload.org/ before uncommenting the line below. | ||
# add_header Strict-Transport-Security "max-age=15768000; preload;"; | ||
add_header X-Content-Type-Options nosniff; | ||
add_header X-XSS-Protection "1; mode=block"; | ||
add_header X-Robots-Tag none; | ||
add_header Content-Security-Policy "frame-ancestors 'self'"; | ||
add_header X-Frame-Options DENY; | ||
add_header Referrer-Policy same-origin; | ||
|
||
location / { | ||
try_files $uri $uri/ /index.php?$query_string; | ||
} | ||
|
||
location ~ \.php$ { | ||
fastcgi_split_path_info ^(.+\.php)(/.+)$; | ||
fastcgi_pass unix:/run/php/php8.3-fpm.sock; | ||
fastcgi_index index.php; | ||
include fastcgi_params; | ||
fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M"; | ||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | ||
fastcgi_param HTTP_PROXY ""; | ||
fastcgi_intercept_errors off; | ||
fastcgi_buffer_size 16k; | ||
fastcgi_buffers 4 16k; | ||
fastcgi_connect_timeout 300; | ||
fastcgi_send_timeout 300; | ||
fastcgi_read_timeout 300; | ||
include /etc/nginx/fastcgi_params; | ||
} | ||
|
||
location ~ /\.ht { | ||
deny all; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.