https://github.com/evmar/lmnopuz
web-based crosswords (stagnant)
https://github.com/evmar/lmnopuz
Last synced: about 1 year ago
JSON representation
web-based crosswords (stagnant)
- Host: GitHub
- URL: https://github.com/evmar/lmnopuz
- Owner: evmar
- Created: 2010-03-09T23:09:42.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2010-03-09T23:10:00.000Z (about 16 years ago)
- Last Synced: 2025-03-25T00:11:05.702Z (about 1 year ago)
- Language: JavaScript
- Homepage: http://neugierig.org/software/lmnopuz/
- Size: 95.7 KB
- Stars: 11
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
# lmnopuz, a DHTML crossword service
# Copyright (C) 2007 Evan Martin
== Requirements
apt-get install ruby1.8 libamrita-ruby1.8
gem install mongrel
gem install json
== Usage
./server --help
== Running lmnopuz on your own server
Two ways:
1) Just run it on some random port and tell your friends about that port.
2) Or, use reverse proxying to "hook in" the server to a directory on
your existing site. Here's how to do it with Apache's mod_proxy:
ProxyRequests off
Order deny,allow
Allow from all
# proxy requests to the crossword server...
# and rewrite its responses to the right address
ProxyPass /software/lmnopuz/demo/ http://localhost:2000/
ProxyPassReverse /software/lmnopuz/demo/ http://localhost:2000/
You can then bring up the server with the --localhost flag and your server
won't publish port 2000 to the world.
== Home page
http://neugierig.org/software/lmnopuz/
== Authors
Evan Martin
Dan Erat