欢迎支持 翼龙中国 CN 现在就支持
指南
警告
使用 SSL 配置时,您必须创建 SSL 证书,否则您的网络服务器将无法启动。请参阅 创建 SSL 证书 文档页面以了解如何在继续之前创建这些证书。
首先,删除默认的 NGINX 配置。
rm /etc/nginx/sites-enabled/default
现在,您应该复制下面文件的内容,将 <domain>
替换为您使用的域名后,粘贴到名为 pterodactyl.conf
的文件中,并将该文件放在 /etc/nginx/sites-available/
目录下, 或 — 如果在 CentOS 上,则为 /etc/nginx/conf.d/
。
server_tokens off;
server {
listen 80;
server_name <domain>;
return 301 https://$server_name$request_uri;
}
server {
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.1-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;
}
}
最后一步是启用 NGINX 配置并重新启动它。
# 如果您使用的是 CentOS,则不需要符号链接此文件。
sudo ln -s /etc/nginx/sites-available/pterodactyl.conf /etc/nginx/sites-enabled/pterodactyl.conf
# 无论操作系统如何,您都需要重新启动 nginx。
sudo systemctl restart nginx
首先,删除默认的 NGINX 配置。
rm /etc/nginx/sites-enabled/default
现在,您应该复制下面文件的内容,将 <domain>
替换为您使用的域名后,粘贴到名为 pterodactyl.conf
的文件中,并将该文件放在 /etc/nginx/sites-available/
目录下, 或 — 如果在 CentOS 上,则为 /etc/nginx/conf.d/
。
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.1-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;
}
}
最后一步是启用 NGINX 配置并重新启动它。
# 如果您使用的是 CentOS,则不需要符号链接此文件。
sudo ln -s /etc/nginx/sites-available/pterodactyl.conf /etc/nginx/sites-enabled/pterodactyl.conf
# 无论操作系统如何,您都需要重新启动 nginx。
sudo systemctl restart nginx
首先,删除默认的 Apache 配置。
a2dissite 000-default.conf
现在,您应该复制下面文件的内容,将 <domain>
替换为您使用的域名后,粘贴到名为 pterodactyl.conf
的文件中,并将该文件放在 /etc/apache2/sites-available
目录下, 或 — 如果在 CentOS 上,则为 /etc/httpd/conf.d/
。
注意:使用 Apache 时,请确保您已安装 libapache2-mod-php
包,否则 PHP 将不会显示在您的网络服务器上。
<VirtualHost *:80>
ServerName <domain>
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
</VirtualHost>
<VirtualHost *:443>
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">
Require all granted
AllowOverride all
</Directory>
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/<domain>/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/<domain>/privkey.pem
</VirtualHost>
创建上面的文件后,只需运行以下命令。如果你在 CentOS 上_你不需要运行下面的命令!_你只需要运行 systemctl restart httpd
。
# 你不需要在 CentOS 上运行这部分的任何命令
sudo ln -s /etc/apache2/sites-available/pterodactyl.conf /etc/apache2/sites-enabled/pterodactyl.conf
sudo a2enmod rewrite
sudo a2enmod ssl
sudo systemctl restart apache2
首先,删除默认的 Apache 配置。
a2dissite 000-default.conf
现在,您应该复制下面文件的内容,将 <domain>
替换为您使用的域名后,粘贴到名为 pterodactyl.conf
的文件中,并将该文件放在 /etc/apache2/sites-available
目录下, 或 — 如果在 CentOS 上,则为 /etc/httpd/conf.d/
。
注意:使用 Apache 时,请确保您已安装 libapache2-mod-php
包,否则 PHP 将不会显示在您的网络服务器上。
<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>
</VirtualHost>
创建上面的文件后,只需运行以下命令。如果你在 CentOS 上_你不需要运行下面的命令!_你只需要运行 systemctl restart httpd
。
# 你不需要在 CentOS 上运行这部分的任何命令
sudo ln -s /etc/apache2/sites-available/pterodactyl.conf /etc/apache2/sites-enabled/pterodactyl.conf
sudo a2enmod rewrite
sudo systemctl restart apache2