
Open source exchange system source code and construction tutorial
This project provides an open source exchange system source code, which you can use to build your own exchange platform. The following is a building tutorial:
Environmental requirements:
PHP 7.2
Extension: fileinfo
Pseudo-static configuration:
nginx
Copy code
location / {
if (!- e $request_filename) {
rewrite ^(.*)$ /index.php? s=$1 last;
break;
}
}
location /wss {
proxy_pass http://127.0.0.1:2348;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection “Upgrade”;
proxy_set_header X-Real-IP $remote_addr;
rewrite /wss/(.*) /$1 break;
proxy_redirect off;
}
Background login information:
Backstage login address: domain name/fox/login/index.html
Account name: admin
Password: 123456
Front desk account information:
Account name: 5555555
Password: 123456
Please note that the above is the background and front office account information of the example. It is recommended to modify the default account information in time during deployment to improve security.
Comments0