HTTP Error 503 with No logs The Next CEO of Stack OverflowTomcat cookies not working via my ProxyPass VirtualHostHTTP Apache - 503 Error - Service UnavailableApache2 vhost config not working (Debian 7)Multi site configuration with apache mod_proxyMy SSL configuration aren't working. Ubuntu apache 2.4ServerAlias without www not working on SSL virtualhostApache archiva returns http error 503Apache2 uses http instead of https, despite LetsEncryptapache reading wrong virtualhost confMissing Apache 2.4 error.log
Does Germany produce more waste than the US?
Won the lottery - how do I keep the money?
Should I tutor a student who I know has cheated on their homework?
Why the difference in type-inference over the as-pattern in two similar function definitions?
I want to delete every two lines after 3rd lines in file contain very large number of lines :
Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?
If Nick Fury and Coulson already knew about aliens (Kree and Skrull) why did they wait until Thor's appearance to start making weapons?
How did people program for Consoles with multiple CPUs?
How do I align (1) and (2)?
Method for adding error messages to a dictionary given a key
Can we say or write : "No, it'sn't"?
Does increasing your ability score affect your main stat?
Some questions about different axiomatic systems for neighbourhoods
Why does the flight controls check come before arming the autobrake on the A320?
Which one is the true statement?
Is there always a complete, orthogonal set of unitary matrices?
Why don't programming languages automatically manage the synchronous/asynchronous problem?
How to check if all elements of 1 list are in the *same quantity* and in any order, in the list2?
Why this way of making earth uninhabitable in Interstellar?
Does soap repel water?
How to get from Geneva Airport to Metabief?
How many extra stops do monopods offer for tele photographs?
Domestic-to-international connection at Orlando (MCO)
INSERT to a table from a database to other (same SQL Server) using Dynamic SQL
HTTP Error 503 with No logs
The Next CEO of Stack OverflowTomcat cookies not working via my ProxyPass VirtualHostHTTP Apache - 503 Error - Service UnavailableApache2 vhost config not working (Debian 7)Multi site configuration with apache mod_proxyMy SSL configuration aren't working. Ubuntu apache 2.4ServerAlias without www not working on SSL virtualhostApache archiva returns http error 503Apache2 uses http instead of https, despite LetsEncryptapache reading wrong virtualhost confMissing Apache 2.4 error.log
I have Apache 2.4.18 Web server on my Ubuntu 16.04 VPS, and I configured these vHosts :
null.conf
<VirtualHost *:80>
DocumentRoot /var/www/null
LogLevel info
ErrorLog $APACHE_LOG_DIR/null.error.log
CustomLog $APACHE_LOG_DIR/null.log combined
<Directory />
Require all denied
</Directory>
</VirtualHost>
dante-MyDomain.conf
<VirtualHost *:80>
ServerName mydomain.com
ServerAlias mydomain.com
ServerAdmin admin@mydomain.com
DocumentRoot /var/www/dante/MyDomain
ErrorLog $APACHE_LOG_DIR/dante-MyDomain_Error.log
CustomLog $APACHE_LOG_DIR/dante-MyDomain_Access.log combined
<Directory "/var/www/dante/MyDomain">
Require all granted
</Directory>
</VirtualHost>
lazarus-public.conf
<VirtualHost *:80>
ServerName lazarus
ServerAlias lazarus
ServerAdmin admin@lazarus.vps
DocumentRoot /var/www/public
ErrorLog $APACHE_LOG_DIR/public.error.log
CustomLog $APACHE_LOG_DIR/public.access.log combined
<Directory "/var/www/public">
Require all granted
Options FollowSymLinks Indexes
</Directory>
</VirtualHost>
Where mydomain.com is a public domain available on the internet, And lazarus is a private domain name I set using hosts
file in my operating system.
Also I configured apache to load null.conf
before any other hosts, So if anyone tries to connect to my server using any other domain name or using IP, They'll get a 403 error.
The Problem is that the vHost on lazarus
domain sometimes responds with error 503. Other vHosts usually work perfectly, unless there are some configuration or network issues, But lazarus
vHost rarely works, And it works for two or three days then stops working again.
It most likely looks like a server overload because it will be available if I wait some hours. But the server is not overloaded and I'm sure of it (unless it's misconfigured), Because lazarus
can only be access by those who know about it (using hosts
file or any other mechanism) and my mydomain.com
only has a single index.html 'Under Construction' note, So I don't think anyone will visit it !
So I tried to look in log files to see if there's anything, But there's nothing. I even tail -f
the log files, there even is no access log, When I try to access the server, and even after I get my 503 response, Nothing changes in logs, as shown below :
dante@Lazarus:~$ tail -f /var/log/apache2/*.log
==> /var/log/apache2/dante-Studio313_Access.log <==
==> /var/log/apache2/dante-Studio313_Error.log <==
==> /var/log/apache2/error.log <==
[Fri Mar 29 08:29:23.438075 2019] [mpm_prefork:notice] [pid 1710] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Fri Mar 29 08:29:23.438241 2019] [mpm_prefork:info] [pid 1710] AH00164: Server built: 2018-06-07T19:43:03
[Fri Mar 29 08:29:23.438276 2019] [core:notice] [pid 1710] AH00094: Command line: '/usr/sbin/apache2'
==> /var/log/apache2/null.error.log <==
==> /var/log/apache2/null.log <==
==> /var/log/apache2/other_vhosts_access.log <==
==> /var/log/apache2/public.access.log <==
==> /var/log/apache2/public.error.log <==
Nothing changes. Only some lines in error.log
from when the apache2 service started.
Also, File permissions are correct. Apache has r/w access to all files in /var/www
and /var/log/apache2
For the sake of verbosity, here is my apache2.conf :
DefaultRuntimeDir $APACHE_RUN_DIR
PidFile $APACHE_PID_FILE
Timeout 300
KeepAlive On
MaxKeepAliveRequests 50
KeepAliveTimeout 10
User $APACHE_RUN_USER
Group $APACHE_RUN_GROUP
HostnameLookups Off
ErrorLog $APACHE_LOG_DIR/error.log
LogLevel info
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf
Include ports.conf
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
AccessFileName .htaccess
<FilesMatch "^.ht">
Require all denied
</FilesMatch>
LogFormat "%v:%p %h %l %u %t "%r" %>s %O "%Refereri" "%User-Agenti"" vhost_combined
LogFormat "%h %l %u %t "%r" %>s %O "%Refereri" "%User-Agenti"" combined
LogFormat "%h %l %u %t "%r" %>s %O" common
LogFormat "%Refereri -> %U" referer
LogFormat "%User-agenti" agent
IncludeOptional conf-enabled/*.conf
IncludeOptional null.conf
IncludeOptional sites-enabled/*.conf
So The Question is that how can I troubleshoot this situation ? Is there anything I'm missing ?
UPDATE : Forgot to mention
This only happens when I request it from a remote client. If I load it from localhost or using a proxy where which its server is my VPS, then lazarus works too.
apache-2.4 virtualhost 503-error
New contributor
add a comment |
I have Apache 2.4.18 Web server on my Ubuntu 16.04 VPS, and I configured these vHosts :
null.conf
<VirtualHost *:80>
DocumentRoot /var/www/null
LogLevel info
ErrorLog $APACHE_LOG_DIR/null.error.log
CustomLog $APACHE_LOG_DIR/null.log combined
<Directory />
Require all denied
</Directory>
</VirtualHost>
dante-MyDomain.conf
<VirtualHost *:80>
ServerName mydomain.com
ServerAlias mydomain.com
ServerAdmin admin@mydomain.com
DocumentRoot /var/www/dante/MyDomain
ErrorLog $APACHE_LOG_DIR/dante-MyDomain_Error.log
CustomLog $APACHE_LOG_DIR/dante-MyDomain_Access.log combined
<Directory "/var/www/dante/MyDomain">
Require all granted
</Directory>
</VirtualHost>
lazarus-public.conf
<VirtualHost *:80>
ServerName lazarus
ServerAlias lazarus
ServerAdmin admin@lazarus.vps
DocumentRoot /var/www/public
ErrorLog $APACHE_LOG_DIR/public.error.log
CustomLog $APACHE_LOG_DIR/public.access.log combined
<Directory "/var/www/public">
Require all granted
Options FollowSymLinks Indexes
</Directory>
</VirtualHost>
Where mydomain.com is a public domain available on the internet, And lazarus is a private domain name I set using hosts
file in my operating system.
Also I configured apache to load null.conf
before any other hosts, So if anyone tries to connect to my server using any other domain name or using IP, They'll get a 403 error.
The Problem is that the vHost on lazarus
domain sometimes responds with error 503. Other vHosts usually work perfectly, unless there are some configuration or network issues, But lazarus
vHost rarely works, And it works for two or three days then stops working again.
It most likely looks like a server overload because it will be available if I wait some hours. But the server is not overloaded and I'm sure of it (unless it's misconfigured), Because lazarus
can only be access by those who know about it (using hosts
file or any other mechanism) and my mydomain.com
only has a single index.html 'Under Construction' note, So I don't think anyone will visit it !
So I tried to look in log files to see if there's anything, But there's nothing. I even tail -f
the log files, there even is no access log, When I try to access the server, and even after I get my 503 response, Nothing changes in logs, as shown below :
dante@Lazarus:~$ tail -f /var/log/apache2/*.log
==> /var/log/apache2/dante-Studio313_Access.log <==
==> /var/log/apache2/dante-Studio313_Error.log <==
==> /var/log/apache2/error.log <==
[Fri Mar 29 08:29:23.438075 2019] [mpm_prefork:notice] [pid 1710] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Fri Mar 29 08:29:23.438241 2019] [mpm_prefork:info] [pid 1710] AH00164: Server built: 2018-06-07T19:43:03
[Fri Mar 29 08:29:23.438276 2019] [core:notice] [pid 1710] AH00094: Command line: '/usr/sbin/apache2'
==> /var/log/apache2/null.error.log <==
==> /var/log/apache2/null.log <==
==> /var/log/apache2/other_vhosts_access.log <==
==> /var/log/apache2/public.access.log <==
==> /var/log/apache2/public.error.log <==
Nothing changes. Only some lines in error.log
from when the apache2 service started.
Also, File permissions are correct. Apache has r/w access to all files in /var/www
and /var/log/apache2
For the sake of verbosity, here is my apache2.conf :
DefaultRuntimeDir $APACHE_RUN_DIR
PidFile $APACHE_PID_FILE
Timeout 300
KeepAlive On
MaxKeepAliveRequests 50
KeepAliveTimeout 10
User $APACHE_RUN_USER
Group $APACHE_RUN_GROUP
HostnameLookups Off
ErrorLog $APACHE_LOG_DIR/error.log
LogLevel info
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf
Include ports.conf
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
AccessFileName .htaccess
<FilesMatch "^.ht">
Require all denied
</FilesMatch>
LogFormat "%v:%p %h %l %u %t "%r" %>s %O "%Refereri" "%User-Agenti"" vhost_combined
LogFormat "%h %l %u %t "%r" %>s %O "%Refereri" "%User-Agenti"" combined
LogFormat "%h %l %u %t "%r" %>s %O" common
LogFormat "%Refereri -> %U" referer
LogFormat "%User-agenti" agent
IncludeOptional conf-enabled/*.conf
IncludeOptional null.conf
IncludeOptional sites-enabled/*.conf
So The Question is that how can I troubleshoot this situation ? Is there anything I'm missing ?
UPDATE : Forgot to mention
This only happens when I request it from a remote client. If I load it from localhost or using a proxy where which its server is my VPS, then lazarus works too.
apache-2.4 virtualhost 503-error
New contributor
add a comment |
I have Apache 2.4.18 Web server on my Ubuntu 16.04 VPS, and I configured these vHosts :
null.conf
<VirtualHost *:80>
DocumentRoot /var/www/null
LogLevel info
ErrorLog $APACHE_LOG_DIR/null.error.log
CustomLog $APACHE_LOG_DIR/null.log combined
<Directory />
Require all denied
</Directory>
</VirtualHost>
dante-MyDomain.conf
<VirtualHost *:80>
ServerName mydomain.com
ServerAlias mydomain.com
ServerAdmin admin@mydomain.com
DocumentRoot /var/www/dante/MyDomain
ErrorLog $APACHE_LOG_DIR/dante-MyDomain_Error.log
CustomLog $APACHE_LOG_DIR/dante-MyDomain_Access.log combined
<Directory "/var/www/dante/MyDomain">
Require all granted
</Directory>
</VirtualHost>
lazarus-public.conf
<VirtualHost *:80>
ServerName lazarus
ServerAlias lazarus
ServerAdmin admin@lazarus.vps
DocumentRoot /var/www/public
ErrorLog $APACHE_LOG_DIR/public.error.log
CustomLog $APACHE_LOG_DIR/public.access.log combined
<Directory "/var/www/public">
Require all granted
Options FollowSymLinks Indexes
</Directory>
</VirtualHost>
Where mydomain.com is a public domain available on the internet, And lazarus is a private domain name I set using hosts
file in my operating system.
Also I configured apache to load null.conf
before any other hosts, So if anyone tries to connect to my server using any other domain name or using IP, They'll get a 403 error.
The Problem is that the vHost on lazarus
domain sometimes responds with error 503. Other vHosts usually work perfectly, unless there are some configuration or network issues, But lazarus
vHost rarely works, And it works for two or three days then stops working again.
It most likely looks like a server overload because it will be available if I wait some hours. But the server is not overloaded and I'm sure of it (unless it's misconfigured), Because lazarus
can only be access by those who know about it (using hosts
file or any other mechanism) and my mydomain.com
only has a single index.html 'Under Construction' note, So I don't think anyone will visit it !
So I tried to look in log files to see if there's anything, But there's nothing. I even tail -f
the log files, there even is no access log, When I try to access the server, and even after I get my 503 response, Nothing changes in logs, as shown below :
dante@Lazarus:~$ tail -f /var/log/apache2/*.log
==> /var/log/apache2/dante-Studio313_Access.log <==
==> /var/log/apache2/dante-Studio313_Error.log <==
==> /var/log/apache2/error.log <==
[Fri Mar 29 08:29:23.438075 2019] [mpm_prefork:notice] [pid 1710] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Fri Mar 29 08:29:23.438241 2019] [mpm_prefork:info] [pid 1710] AH00164: Server built: 2018-06-07T19:43:03
[Fri Mar 29 08:29:23.438276 2019] [core:notice] [pid 1710] AH00094: Command line: '/usr/sbin/apache2'
==> /var/log/apache2/null.error.log <==
==> /var/log/apache2/null.log <==
==> /var/log/apache2/other_vhosts_access.log <==
==> /var/log/apache2/public.access.log <==
==> /var/log/apache2/public.error.log <==
Nothing changes. Only some lines in error.log
from when the apache2 service started.
Also, File permissions are correct. Apache has r/w access to all files in /var/www
and /var/log/apache2
For the sake of verbosity, here is my apache2.conf :
DefaultRuntimeDir $APACHE_RUN_DIR
PidFile $APACHE_PID_FILE
Timeout 300
KeepAlive On
MaxKeepAliveRequests 50
KeepAliveTimeout 10
User $APACHE_RUN_USER
Group $APACHE_RUN_GROUP
HostnameLookups Off
ErrorLog $APACHE_LOG_DIR/error.log
LogLevel info
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf
Include ports.conf
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
AccessFileName .htaccess
<FilesMatch "^.ht">
Require all denied
</FilesMatch>
LogFormat "%v:%p %h %l %u %t "%r" %>s %O "%Refereri" "%User-Agenti"" vhost_combined
LogFormat "%h %l %u %t "%r" %>s %O "%Refereri" "%User-Agenti"" combined
LogFormat "%h %l %u %t "%r" %>s %O" common
LogFormat "%Refereri -> %U" referer
LogFormat "%User-agenti" agent
IncludeOptional conf-enabled/*.conf
IncludeOptional null.conf
IncludeOptional sites-enabled/*.conf
So The Question is that how can I troubleshoot this situation ? Is there anything I'm missing ?
UPDATE : Forgot to mention
This only happens when I request it from a remote client. If I load it from localhost or using a proxy where which its server is my VPS, then lazarus works too.
apache-2.4 virtualhost 503-error
New contributor
I have Apache 2.4.18 Web server on my Ubuntu 16.04 VPS, and I configured these vHosts :
null.conf
<VirtualHost *:80>
DocumentRoot /var/www/null
LogLevel info
ErrorLog $APACHE_LOG_DIR/null.error.log
CustomLog $APACHE_LOG_DIR/null.log combined
<Directory />
Require all denied
</Directory>
</VirtualHost>
dante-MyDomain.conf
<VirtualHost *:80>
ServerName mydomain.com
ServerAlias mydomain.com
ServerAdmin admin@mydomain.com
DocumentRoot /var/www/dante/MyDomain
ErrorLog $APACHE_LOG_DIR/dante-MyDomain_Error.log
CustomLog $APACHE_LOG_DIR/dante-MyDomain_Access.log combined
<Directory "/var/www/dante/MyDomain">
Require all granted
</Directory>
</VirtualHost>
lazarus-public.conf
<VirtualHost *:80>
ServerName lazarus
ServerAlias lazarus
ServerAdmin admin@lazarus.vps
DocumentRoot /var/www/public
ErrorLog $APACHE_LOG_DIR/public.error.log
CustomLog $APACHE_LOG_DIR/public.access.log combined
<Directory "/var/www/public">
Require all granted
Options FollowSymLinks Indexes
</Directory>
</VirtualHost>
Where mydomain.com is a public domain available on the internet, And lazarus is a private domain name I set using hosts
file in my operating system.
Also I configured apache to load null.conf
before any other hosts, So if anyone tries to connect to my server using any other domain name or using IP, They'll get a 403 error.
The Problem is that the vHost on lazarus
domain sometimes responds with error 503. Other vHosts usually work perfectly, unless there are some configuration or network issues, But lazarus
vHost rarely works, And it works for two or three days then stops working again.
It most likely looks like a server overload because it will be available if I wait some hours. But the server is not overloaded and I'm sure of it (unless it's misconfigured), Because lazarus
can only be access by those who know about it (using hosts
file or any other mechanism) and my mydomain.com
only has a single index.html 'Under Construction' note, So I don't think anyone will visit it !
So I tried to look in log files to see if there's anything, But there's nothing. I even tail -f
the log files, there even is no access log, When I try to access the server, and even after I get my 503 response, Nothing changes in logs, as shown below :
dante@Lazarus:~$ tail -f /var/log/apache2/*.log
==> /var/log/apache2/dante-Studio313_Access.log <==
==> /var/log/apache2/dante-Studio313_Error.log <==
==> /var/log/apache2/error.log <==
[Fri Mar 29 08:29:23.438075 2019] [mpm_prefork:notice] [pid 1710] AH00163: Apache/2.4.18 (Ubuntu) configured -- resuming normal operations
[Fri Mar 29 08:29:23.438241 2019] [mpm_prefork:info] [pid 1710] AH00164: Server built: 2018-06-07T19:43:03
[Fri Mar 29 08:29:23.438276 2019] [core:notice] [pid 1710] AH00094: Command line: '/usr/sbin/apache2'
==> /var/log/apache2/null.error.log <==
==> /var/log/apache2/null.log <==
==> /var/log/apache2/other_vhosts_access.log <==
==> /var/log/apache2/public.access.log <==
==> /var/log/apache2/public.error.log <==
Nothing changes. Only some lines in error.log
from when the apache2 service started.
Also, File permissions are correct. Apache has r/w access to all files in /var/www
and /var/log/apache2
For the sake of verbosity, here is my apache2.conf :
DefaultRuntimeDir $APACHE_RUN_DIR
PidFile $APACHE_PID_FILE
Timeout 300
KeepAlive On
MaxKeepAliveRequests 50
KeepAliveTimeout 10
User $APACHE_RUN_USER
Group $APACHE_RUN_GROUP
HostnameLookups Off
ErrorLog $APACHE_LOG_DIR/error.log
LogLevel info
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf
Include ports.conf
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
AccessFileName .htaccess
<FilesMatch "^.ht">
Require all denied
</FilesMatch>
LogFormat "%v:%p %h %l %u %t "%r" %>s %O "%Refereri" "%User-Agenti"" vhost_combined
LogFormat "%h %l %u %t "%r" %>s %O "%Refereri" "%User-Agenti"" combined
LogFormat "%h %l %u %t "%r" %>s %O" common
LogFormat "%Refereri -> %U" referer
LogFormat "%User-agenti" agent
IncludeOptional conf-enabled/*.conf
IncludeOptional null.conf
IncludeOptional sites-enabled/*.conf
So The Question is that how can I troubleshoot this situation ? Is there anything I'm missing ?
UPDATE : Forgot to mention
This only happens when I request it from a remote client. If I load it from localhost or using a proxy where which its server is my VPS, then lazarus works too.
apache-2.4 virtualhost 503-error
apache-2.4 virtualhost 503-error
New contributor
New contributor
edited yesterday
Dante Marshal
New contributor
asked yesterday
Dante MarshalDante Marshal
14
14
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Dante Marshal is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f960618%2fhttp-error-503-with-no-logs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Dante Marshal is a new contributor. Be nice, and check out our Code of Conduct.
Dante Marshal is a new contributor. Be nice, and check out our Code of Conduct.
Dante Marshal is a new contributor. Be nice, and check out our Code of Conduct.
Dante Marshal is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f960618%2fhttp-error-503-with-no-logs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown