Skip to content

Files

Latest commit

 

History

History

discuz

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

discuz

Discuz! is an internet forum software written in PHP and developed by a chinese company.

👎 Discuz! is not a open source software. 💀

  • Initial release: March 2002
  • Stable release: X3.2 (September 23, 2013; 2 years ago)
  • License: proprietary (costs about ¥3000)

👍 Try open source softwares: 👼

docker-compose.yml

discuz:
  image: vimagick/discuz
  ports:
    - "8000:80"
  links:
    - mysql
  restart: always

mysql:
  image: mysql
  environment:
    - MYSQL_ROOT_PASSWORD=root
    - MYSQL_DATABASE=discuz
    - MYSQL_USER=discuz
    - MYSQL_PASSWORD=discuz
  restart: always

/etc/nginx/sites-enabled/discuz

server {
    listen 80;
    server_name discuz.easypi.info;
    location / {
        proxy_pass http://127.0.0.1:8000;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
}

⚠️ You should pass HTTP headers to fix wrong URL.