libevent: rename `bind_to` to the more precise `bind_tcp`
[nit.git] / contrib / opportunity / src / opportunity_web.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License
14
15 # Web server for Opportunity : A meetup scheduler for real-world encounters !
16 module opportunity_web
17
18 import opportunity_controller
19 import opts
20 import privileges
21
22 var iface = "localhost:8080"
23
24 if args.not_empty then
25 iface = args.first
26 end
27
28 var vh = new VirtualHost(iface)
29 vh.routes.add new Route("/rest/", new OpportunityRESTAction)
30 vh.routes.add new Route("/static/", new FileServer("art"))
31 vh.routes.add new Route(null, new OpportunityWelcome)
32
33 var fac = new HttpFactory.and_libevent
34 fac.config.virtual_hosts.add vh
35
36 print "Launching server on http://{iface}/"
37 fac.run