Skip to content

Commit af25d72

Browse files
committed
Change nginx string to allow
1 parent 2234839 commit af25d72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ip-list-updater.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ static function update() {
288288
$output_data = $output_prefix;
289289
$pair = strtok( $ip_list, "\n" );
290290
while ( $pair !== false ) {
291-
$output_data .= "set_real_ip_from " . $pair . ";\n";
291+
$output_data .= "allow " . $pair . ";\n";
292292
$pair = strtok( "\n" );
293293
}
294294
strtok( '', '' );

0 commit comments

Comments
 (0)