<div dir="ltr"><div><div><div>Hi,<br></div>I have a dynamic web application, which i start with the below code. I installed Racket on a VM and want to run the Racket WebApplicarion from this virtual server which has an IP<br>but when I run the Racket-Program i get following message: Your Web application is running at <a href="http://localhost:8080">http://localhost:8080</a>. Stop this program at any time to terminate the Web Server.<br></div>this means the program  is running but how can i open the web application with a browser! It can't be on localhost! I'm running it from the server which i connect via VPN!<br></div>the serve/servlet:<br>....<br><div><div><div>(module+ main<br>  (serve/servlet<br>   dispatch<br>   #:stateless? #f       <br>   #:launch-browser? #f<br>   #:connection-close? #t<br>   #:quit? #f <br>   #:listen-ip #f <br>   #:port 8080<br>   #:servlet-regexp #rx""<br>   #:extra-files-paths (list static)<br>   #:servlet-path "/"<br>   ;#:manager mgr<br>   #:log-file "try-racket-serve-log.txt"))<br></div><div>p.s.: locally works every thing as it should be...but i want it to put the Application on my server too!<br></div><div>please write me when you can't understand me!<br></div><div><br></div><div>thanks<br></div><div><br></div></div></div></div>