Skip to content

subuk/chatex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Live anonymous image board with websockets and html5 notifications.

For websockets fallback work properly, you should configure flash socket policy server.

Nginx configuration example:

server {
    listen   843;
    root /usr/share/nginx/html/flash;

    location / {
        rewrite ^(.*)$ /flash-policy.xml;
    }

    location /flash-policy.xml {
        root /usr/share/nginx/html/flash;
    }

    error_page 400 /flash-policy.xml;

}

flash-policy.xml:

<cross-domain-policy>
    <allow-access-from domain="board.example.org" to-ports="*"/>
</cross-domain-policy>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published