Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 418 Bytes

ApplicationContext.md

File metadata and controls

18 lines (12 loc) · 418 Bytes

Ubuntu 24.04♥中的TYPO3 —— 应用上下文

修改站点配置文件/etc/nginx/conf.d/domain.tld.conf

server {
    ...
    location ~ \.php$ {
        fastcgi_param TYPO3_CONTEXT value;
    }
}

可选值为ProductionDevelopmentTesting,更多详情请参考\TYPO3\CMS\Core\Core\ApplicationContext

重启Nginx

service nginx restart

<< 返回