I have previously setup under Apache2 web server, and lt.cce.academy subdomain will launch leantime application, whereas nc.cce.academy subdomain will launch Nextcloud application with no issue. As my company prefers to use nginx, so I have installed nginx. /etc/nginx/sites-available/lt.cce.academy config, I have the following configuration. Just to mention that this is a copy of the masteby raymondraymond0517 - How to...
Found the answer, Nginx not installed with software to execute php file, that is why it downloads the php scrip instead of executing itby raymondraymond0517 - How to...
Similar to the issue raised in this stack overflow question https://stackoverflow.com/questions/61136822/nginx-accessing-my-website-with-subdomain-downloads-a-file however, mine is a very basic configuration just to get leantime application running on a subdomain lt.cce.academyby raymondraymond0517 - How to...
Hi, This is my first server block. The filename lp.cce.academy, and the file content is as follows: /etc/nginx/sites-available # cat lt.cce.academy server { listen 80; listen [::]:80; root /var/www/cce/leantime/public; index index.html index.htm index.php; server_name lt.cce.academy; location / { try_files $uri $uri/ =by raymondraymond0517 - How to...