windows - Make Jenkins invisible to remote users -


i have jenkins server on local windows device, want make invisible outside world (office rules regarding servers). obvious , unsubtle way, works satisfactorily, set firewall rule block incoming access port, feel there must jenkins setting stop advertising services localhost. can tell me if there is?

note setting user credentials not valid solution, server being visible inaccessible without login still violates office rules.

from starting , accessing jenkins need --httplistenaddress=127.0.0.1 command line parameter:

--httplistenaddress=$http_host - binds jenkins ip address represented $http_host. default 0.0.0.0 — i.e. listening on available interfaces. example, listen requests localhost, use: --httplistenaddress=127.0.0.1

if run jenkins windows service, can extend command line arguments in jenkins.xml file in jenkins home directory.

similar answer (for linux-oriented platforms) on serverfault.


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -