server { #listen *:443 ssl http2; listen 80; server_name codecanyoncms.dc; #include /etc/nginx/ssl-snippets/ssl-snippet.conf; # LOGS - config access_log /var/log/nginx/codecanyoncms.access.log; error_log /var/log/nginx/codecanyoncms.error.log; # NGINX - config (sizes, charset, caching, ...) client_max_body_size 32m; client_body_buffer_size 32m; charset utf-8; gzip on; gzip_types text/plain text/css text/xml application/xml application/xml+rss text/javascript application/json application/x-javascript application/javascript; # BASE ROOT DIRECTORY for Yii advanced app setup. Default must be the path to your app composer.json. Let suppose it in /var/www/examplesite set $base_root /var/www/yii/codecanyoncms; # BASE PHP-FPM SOKET - this is passed to nginx fastcgi_pass, uncoment or add needed version #set $php_server unix:/run/php/php7.4-fpm.sock; #set $php_server unix:/run/php/php8.0-fpm.sock; set $php_server unix:/run/php/php8.2-fpm.sock; root $base_root; index index.php index.html; # FRONTEND APP - location config location / { root $base_root/frontend/web; try_files $uri $uri/ /frontend/web/index.php$is_args$args; # omit static files logging, and if they don't exist, avoid processing by Yii (uncomment if necessary) location ~ ^/.+\.(css|less|js|map|ico|png|jpe?g|gif|webp|svg|eot|ttf|woff|woff2|mp4|mov|swf|txt|pdf)$ { expires 365d; log_not_found off; access_log off; try_files $uri =404; } location ~ ^/assets/.+\.php(/|$) { deny all; } } # API APP - location config location /api { root $base_root/api/web/; # redirect to the URL without a trailing slash (uncomment if necessary) #location = /api/ { # return 301 /api; #} location = /api { try_files $uri /api/web/index.php$is_args$args; } # omit static files logging, and if they don't exist, avoid processing by Yii (uncomment if necessary) location ~ ^/api/.+\.(css|less|js|map|ico|png|jpe?g|gif|webp|svg|eot|ttf|woff|woff2|mp4|mov|swf|txt|pdf)$ { rewrite ^/api(/.+)$ $1 break; log_not_found off; access_log off; try_files $uri =404; } location ~ ^/api/assets/.+\.php(/|$) { deny all; } try_files $uri $uri/ /api/web/index.php$is_args$args; } # BACKEND APP - location config location /admin { root $base_root/backend/web/; # redirect to the URL without a trailing slash (uncomment if necessary) #location = /admin/ { # return 301 /admin; #} # prevent the directory redirect to the URL with a trailing slash location = /admin { try_files $uri /backend/web/index.php$is_args$args; } # omit static files logging, and if they don't exist, avoid processing by Yii (uncomment if necessary) location ~ ^/admin/.+\.(css|less|js|map|ico|png|jpe?g|gif|webp|svg|eot|ttf|woff|woff2|mp4|mov|swf|txt|pdf)$ { rewrite ^/admin(/.+)$ $1 break; log_not_found off; access_log off; try_files $uri =404; } location ~ ^/admin/assets/.+\.php(/|$) { deny all; } # if your location is "/backend", try use "/backend/backend/web/index.php$is_args$args" # bug ticket: https://trac.nginx.org/nginx/ticket/97 try_files $uri $uri/ /backend/web/index.php$is_args$args; } # PHP FILES HANDLE location ~ ^/.+\.php(/|$) { rewrite (?!^/((frontend|api|backend)/web|api|admin))^ /frontend/web$uri break; rewrite (?!^/api/web)^/api(/.+)$ /api/web$1 break; rewrite (?!^/backend/web)^/admin(/.+)$ /backend/web$1 break; fastcgi_pass $php_server; fastcgi_split_path_info ^(.+\.php)(.*)$; include /etc/nginx/fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; try_files $fastcgi_script_name =404; } # OTHER LOCATIONS AND RESTRICTIONS location = /robots.txt { access_log off; log_not_found off; } location = /favicon.ico { access_log off; log_not_found off; } location ~* /\. { access_log off; log_not_found off; deny all; } }