We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Configuring nginx to serve Rapila sites is quite straightforward:
server { listen your-port your-server-name; root /path/to/your/rapila/installation; location ~ \.php$ { # Your PHP-FMP or php-fcgi proxy config here } location ~ ^\/(base\/web|plugins\/(\w|_)+\/web|site\/web) { try_files $uri /index.php?path=$uri$args; } location / { rewrite ^ /index.php?path=$uri; } }