Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
docker-pterodactyl-legacy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
docker-pterodactyl-legacy
Commits
1919f0f8
Commit
1919f0f8
authored
Apr 18, 2018
by
Cameron Carney
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Logging updated, now displays in stdout/stderr
parent
90a1c30a
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
11 deletions
+12
-11
manifest/panel/entrypoint.sh
manifest/panel/entrypoint.sh
+1
-1
manifest/panel/etc/nginx/nginx.conf
manifest/panel/etc/nginx/nginx.conf
+5
-3
manifest/panel/etc/nginx/templates/http.conf
manifest/panel/etc/nginx/templates/http.conf
+0
-3
manifest/panel/etc/nginx/templates/https.conf
manifest/panel/etc/nginx/templates/https.conf
+0
-3
manifest/panel/etc/supervisor.d/runtime-files/nginx.ini
manifest/panel/etc/supervisor.d/runtime-files/nginx.ini
+5
-0
manifest/panel/etc/supervisord.conf
manifest/panel/etc/supervisord.conf
+1
-1
No files found.
manifest/panel/entrypoint.sh
View file @
1919f0f8
...
...
@@ -94,7 +94,7 @@ function startServer {
/var/run/supervisor.d/
fi
exec
supervisord
--nodaemon
exec
supervisord
--nodaemon
-c
/etc/supervisord.conf
}
## Start ##
...
...
manifest/panel/etc/nginx/nginx.conf
View file @
1919f0f8
user
nginx
;
worker_processes
auto
;
error_log
/var/log/nginx/error.log
;
error_log
/dev/stderr
;
error_log
/data/storage/logs/access.error.log
;
pid
/var/run/nginx.pid
;
events
{
...
...
@@ -14,7 +15,8 @@ http {
'
$status
$body_bytes_sent
"
$http_referer
"
'
'"
$http_user_agent
"
"
$http_x_forwarded_for
"'
;
access_log
/var/log/nginx/access.log
main
;
access_log
/dev/stdout
main
;
access_log
/data/storage/logs/access.log
main
;
charset
utf-8
;
...
...
@@ -54,4 +56,4 @@ http {
# General config directory
include
/etc/nginx/conf.d/*.conf
;
}
\ No newline at end of file
}
manifest/panel/etc/nginx/templates/http.conf
View file @
1919f0f8
...
...
@@ -13,9 +13,6 @@ server {
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
/
data
/
storage
/
logs
/
nginx
.
app
-
error
.
log
error
;
# allow larger file uploads and longer script runtimes
client_max_body_size
100
m
;
client_body_timeout
120
s
;
...
...
manifest/panel/etc/nginx/templates/https.conf
View file @
1919f0f8
...
...
@@ -29,9 +29,6 @@ server {
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
/
data
/
storage
/
logs
/
nginx
.
app
-
error
.
log
error
;
# allow larger file uploads and longer script runtimes
client_max_body_size
100
m
;
client_body_timeout
120
s
;
...
...
manifest/panel/etc/supervisor.d/runtime-files/nginx.ini
View file @
1919f0f8
...
...
@@ -5,3 +5,8 @@ autorestart=true
priority
=
10
stdout_events_enabled
=
true
stderr_events_enabled
=
true
stdout_logfile
=
/dev/stdout
stdout_logfile_maxbytes
=
0
stderr_logfile
=
/dev/stderr
stderr_logfile_maxbytes
=
0
\ No newline at end of file
manifest/panel/etc/supervisord.conf
View file @
1919f0f8
[
supervisord
]
[
include
]
files
= /
var
/
run
/
supervisor
.
d
/*.
ini
\ No newline at end of file
files
= /
var
/
run
/
supervisor
.
d
/*.
ini
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment