Here is a simple app I developed using ErlyWeb:

- description: http://noe.dmitriid.com/
- demo: http://noed.dmitriid.com/
- code: http://code.google.com/p/noe/

All it does is storing text snippets in a database. Might serve as a
starting point for those, who plan to dive into ErlyWeb

I only viewd this app in Safari/Opera/Firefox on MacOS, so fonts/
design might look ugly on Linux/MacOS. If that is so, I'm open to
suggestions

Many great thanks to Yariv Sadan for ErlyWeb and for publishing
Twoorl's code which cleared a lot of things for me

P.S.
Quick note on demo site. It runs Yaws behind Apache. Here's the setup
for those wishing to do the same

Apache's virtual host:

<VirtualHost 82.146.60.46:80>
    ServerName noed.dmitriid.com

    ProxyRequests Off
    ProxyPreserveHost On

    <Proxy *>
        Order deny,allow
        Allow from all
    </Proxy>

    ProxyPass / http://82.146.60.46:81/
    ProxyPassReverse / http://82.146.60.46:81/

    <Location />
        Order allow,deny
        Allow from all
    </Location>
</VirtualHost>

yaws.conf:
<server noed.dmitriid.com>
        port = 81
        listen = 0.0.0.0
        docroot = /home/dmitriid/data/www/noe_demo/www/
        appmods = </, erlyweb>
        start_mod = noe
        <opaque>
            appname = noe_demo
        </opaque>
</server>


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"erlyweb" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/erlyweb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to