Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evmar/lmnopuz
web-based crosswords (stagnant)
https://github.com/evmar/lmnopuz
Last synced: 28 days ago
JSON representation
web-based crosswords (stagnant)
- Host: GitHub
- URL: https://github.com/evmar/lmnopuz
- Owner: evmar
- Created: 2010-03-09T23:09:42.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2010-03-09T23:10:00.000Z (almost 15 years ago)
- Last Synced: 2024-04-14T22:17:14.035Z (8 months ago)
- Language: JavaScript
- Homepage: http://neugierig.org/software/lmnopuz/
- Size: 95.7 KB
- Stars: 10
- Watchers: 5
- 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