enable strict where missing cleanup

This commit is contained in:
Viktor Szakats 2025-07-09 21:41:16 +02:00
parent 9ba943e38e
commit 6c1879abb6
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
2 changed files with 6 additions and 6 deletions

View file

@ -23,6 +23,9 @@
#
#***************************************************************************
use strict;
use warnings 'FATAL' => 'all';
# This script invokes nghttpx properly to have it serve HTTP/2 for us.
# nghttpx runs as a proxy in front of our "actual" HTTP/1 server.
use Cwd;
@ -30,9 +33,6 @@ use Cwd 'abs_path';
use File::Basename;
use File::Spec;
use strict;
use warnings 'FATAL' => 'all';
my $logdir = "log";
my $pidfile = "$logdir/nghttpx.pid";
my $logfile = "$logdir/http2.log";

View file

@ -23,6 +23,9 @@
#
#***************************************************************************
use strict;
use warnings 'FATAL' => 'all';
# This script invokes nghttpx properly to have it serve HTTP/3 for us.
# nghttpx runs as a proxy in front of our "actual" HTTP/1 server.
@ -31,9 +34,6 @@ use Cwd 'abs_path';
use File::Basename;
use File::Spec;
use strict;
use warnings 'FATAL' => 'all';
my $logdir = "log";
my $pidfile = "$logdir/nghttpx.pid";
my $logfile = "$logdir/http3.log";