forked from SWI-Prolog/swish
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SECURITY: make default startup using
swipl run.pl
bind only to the
localhost network interface.
- Loading branch information
Jan Wielemaker
authored and
Jan Wielemaker
committed
Jun 3, 2016
1 parent
8f6476a
commit 6be5818
Showing
2 changed files
with
50 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
:- use_module(server). | ||
|
||
:- initialization server(3050). | ||
% Using `localhost:3050`, we only bind to localhost interface! | ||
% Use plain `3050` (or any port number you like) to make the server | ||
% accessible from all network interfaces. | ||
|
||
:- initialization server(localhost:3050). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,32 @@ | ||
/* Part of SWI-Prolog | ||
Author: Jan Wielemaker | ||
E-mail: [email protected] | ||
WWW: http://www.swi-prolog.org | ||
Copyright (C): 2014-2016, VU University Amsterdam | ||
This program is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU General Public License | ||
as published by the Free Software Foundation; either version 2 | ||
of the License, or (at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public | ||
License along with this library; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
As a special exception, if you link this library with other files, | ||
compiled with a Free Software compiler, to produce an executable, this | ||
library does not by itself cause the resulting executable to be covered | ||
by the GNU General Public License. This exception does not however | ||
invalidate any other reasons why the executable file might be covered by | ||
the GNU General Public License. | ||
*/ | ||
|
||
:- module(server, | ||
[ server/0, | ||
server/1 % ?Port | ||
|
@@ -6,6 +35,21 @@ | |
:- use_module(library(http/http_dispatch)). | ||
:- use_module(swish). | ||
|
||
/** <module> Load the SWISH server for local usage | ||
This module loads the SWISH server for default local usage, i.e., mostly | ||
for developing SWISH. The file `daemon.pl` can be used as a start to run | ||
it as a server process. | ||
This file is normally used from `run.pl`, which is started like this | ||
from the shell to start the SWISH server accessible on | ||
http://localhost:3050/ | ||
swipl run.pl | ||
@see run.pl and daemon.pl | ||
*/ | ||
|
||
%% server is det. | ||
%% server(?Port) is det. | ||
% | ||
|
@@ -15,7 +59,7 @@ | |
% interface. | ||
|
||
server :- | ||
server(3050). | ||
server(localhost:3050). | ||
server(Port) :- | ||
http_server(http_dispatch, | ||
[ port(Port), | ||
|