AIGC系统程序源码文档

AIGCSaaS系统源码,是专注提供AI系统源代码解决方案的技术团队,目前已开源「AI数字人SaaS系统」「超级全能AI变现系统」「企业AI知识库」「AI聊天绘画系统」「论文写作系统」拥有PHP和JAVA两种语言版本,技术实力强,系统体验好支持私有部署,专业团队、售后无忧


通用部署②/③

<h2>项目入口<a href="https://doc.chatmoney.cn/dm/deployment/general.html#%E9%A1%B9%E7%9B%AE%E5%85%A5%E5%8F%A3">​</a></h2> <p>项目静态资源入口目录:<code>server/public</code>   </p> <p>项目PHP入口文件:<code>server/public/index.php</code></p> <h2>PHP扩展<a href="https://doc.chatmoney.cn/dm/deployment/general.html#php%E6%89%A9%E5%B1%95">​</a></h2> <p><code>fileinfo</code>、<code>PDO_MYSQL</code>、<code>allow_url_fopen</code>、<code>GD2</code>、<code>DOM</code>、<code>redis</code></p> <h2>nginx配置<a href="https://doc.chatmoney.cn/dm/deployment/general.html#nginx%E9%85%8D%E7%BD%AE">​</a></h2> <h3>nginx全配置<a href="https://doc.chatmoney.cn/dm/deployment/general.html#nginx%E5%85%A8%E9%85%8D%E7%BD%AE">​</a></h3> <p>⚠️ 警告</p> <p>使用过泛域名和泛域名证书,租户如果使用自定义域名,请使用自抑域名添加相当的nginx配置。</p> <pre><code>server { listen 80; listen 443 ssl; server_name *.likeadmin.localhost; ssl_certificate /ssl/likeadmin.localhost.crt; ssl_certificate_key /ssl/likeadmin.localhost.key; access_log /logs/likeadmin.localhost_t_access_nginx.log; error_log /logs/likeadmin.localhost_error_nginx.log; client_max_body_size 5M; location / { root chat/server/public;#入口文件目录 index index.html index.htm index.php; if (!-e $request_filename) { rewrite ^/(.*)$ /index.php?s=$1 last; break; } } location ~ /.*\.php/ { rewrite ^(.*?/?)(.*\.php)(.*)$ /$2?s=$3 last; break; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /var/www/html; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME likeadmin/server/public$fastcgi_script_name; #入口文件目录 include fastcgi_params; } location = /favicon.ico { log_not_found off; access_log off; } }</code></pre> <h3>nginx伪静态部分<a href="https://doc.chatmoney.cn/dm/deployment/general.html#nginx%E4%BC%AA%E9%9D%99%E6%80%81%E9%83%A8%E5%88%86">​</a></h3> <pre><code>if (!-e $request_filename) { rewrite ^/(.*)$ /index.php?s=$1 last; break; }</code></pre> <h2>apache配置<a href="https://doc.chatmoney.cn/dm/deployment/general.html#apache%E9%85%8D%E7%BD%AE">​</a></h2> <h3>apache权配置<a href="https://doc.chatmoney.cn/dm/deployment/general.html#apache%E6%9D%83%E9%85%8D%E7%BD%AE">​</a></h3> <p>⚠️ 警告</p> <p>使用过泛域名和泛域名证书,租户如果使用自定义域名,请使用自抑域名添加相当的apache配置。</p> <pre><code>&amp;lt;VirtualHost *:80&amp;gt; ServerName *.likeadmin.localhost DocumentRoot /path/to/likeadmin/server/public ErrorLog ${APACHE_LOG_DIR}/demo.likeadmin.cn_error_apache.log CustomLog ${APACHE_LOG_DIR}/demo.likeadmin.cnt_access_apache.log combined &amp;lt;Directory /path/to/likeadmin/server/public&amp;gt; Options Indexes FollowSymLinks AllowOverride All Require all granted &amp;lt;/Directory&amp;gt; # Rewrite settings RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ /index.php?s=$1 [L] # PHP settings &amp;lt;FilesMatch &amp;quot;\.php$&amp;quot;&amp;gt; SetHandler &amp;quot;proxy:fcgi://127.0.0.1:9000&amp;quot; &amp;lt;/FilesMatch&amp;gt; # Error page handling ErrorDocument 500 /50x.html ErrorDocument 502 /50x.html ErrorDocument 503 /50x.html ErrorDocument 504 /50x.html # Disable favicon logging &amp;lt;Files favicon.ico&amp;gt; LogLevel emerg CustomLog /dev/null common &amp;lt;/Files&amp;gt; &amp;lt;/VirtualHost&amp;gt; &amp;lt;VirtualHost *:443&amp;gt; ServerName *.likeadmin.localhost DocumentRoot /path/to/likeadmin/server/public ErrorLog ${APACHE_LOG_DIR}/demo.likeadmin.cn_error_apache.log CustomLog ${APACHE_LOG_DIR}/demo.likeadmin.cnt_access_apache.log combined SSLEngine on SSLCertificateFile /ssl/*.likeadmin.localhost.crt SSLCertificateKeyFile /ssl/www.localhost.key &amp;lt;Directory /path/to/likeadmin/server/public&amp;gt; Options Indexes FollowSymLinks AllowOverride All Require all granted &amp;lt;/Directory&amp;gt; # Rewrite settings RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ /index.php?s=$1 [L] # PHP settings &amp;lt;FilesMatch &amp;quot;\.php$&amp;quot;&amp;gt; SetHandler &amp;quot;proxy:fcgi://127.0.0.1:9000&amp;quot; &amp;lt;/FilesMatch&amp;gt; # Error page handling ErrorDocument 500 /50x.html ErrorDocument 502 /50x.html ErrorDocument 503 /50x.html ErrorDocument 504 /50x.html # Disable favicon logging &amp;lt;Files favicon.ico&amp;gt; LogLevel emerg CustomLog /dev/null common &amp;lt;/Files&amp;gt; &amp;lt;/VirtualHost&amp;gt;</code></pre> <h3>apache伪静态<a href="https://doc.chatmoney.cn/dm/deployment/general.html#apache%E4%BC%AA%E9%9D%99%E6%80%81">​</a></h3> <pre><code>&amp;lt;IfModule mod_rewrite.c&amp;gt; Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] &amp;lt;/IfModule&amp;gt;</code></pre> <h2>安装<a href="https://doc.chatmoney.cn/dm/deployment/general.html#%E5%AE%89%E8%A3%85">​</a></h2> <p>部署成功后,访问域名即可安装<code>likeadmin</code>,安装后生成配置文件<code>server/.env</code>。<code>server/.env</code>包含<code>Mysql</code>、<code>Redis</code>等配置信息。</p> <h2>访问地址<a href="https://doc.chatmoney.cn/dm/deployment/general.html#%E8%AE%BF%E9%97%AE%E5%9C%B0%E5%9D%80">​</a></h2> <p>提示</p> <p>首次安装的域名就是平台域名,租户域名在平台</p> <p>平台后台访问地址:<a href="https://php-saas.likeadmin.cn/platform"><a href="http://平台域名/platform">http://平台域名/platform</a></a><br /> 租户后台访问地址:<a href="https://php.likeadmin.cn/platform"><a href="http://租户域名/admin">http://租户域名/admin</a></a><br /> 租户PC端前台访问地址:<a href="https://php.likeadmin.cn/pc"><a href="http://租户域名/pc">http://租户域名/pc</a></a><br /> 租户移动端前台访问地址:<a href="https://php.likeadmin.cn/mobile"><a href="http://域名/mobile">http://域名/mobile</a></a></p> <h2>添加租户自定义域名<a href="https://doc.chatmoney.cn/dm/deployment/general.html#%E6%B7%BB%E5%8A%A0%E7%A7%9F%E6%88%B7%E8%87%AA%E5%AE%9A%E4%B9%89%E5%9F%9F%E5%90%8D">​</a></h2> <p>将自定义租户域名做<code>CNAME</code>解析到系统生成的租户默认域名,在SaaS平台后台设置租户自定义域名,然后<code>Nginx</code>或<code>Apache</code>添加配置,配置出了域名以外,其它与上述的配置一致。</p>

页面列表

ITEM_HTML