mirror of
https://codeberg.org/vegvisir/website.git
synced 2025-09-14 00:43:42 +02:00
First (rushed 😦) release of the Vegvisir website. Reviewed-on: https://codeberg.org/vegvisir/website/pulls/1 Co-authored-by: vlw <victor@vlw.se> Co-committed-by: vlw <victor@vlw.se>
16 lines
No EOL
356 B
Text
16 lines
No EOL
356 B
Text
# You might need to alter this block to suit your NGINX configuration
|
|
# The important thing is that all requests should be routed to /public/index.php
|
|
|
|
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
root /var/www/vegvisir/public;
|
|
|
|
location / {
|
|
try_files /index.php =503;
|
|
|
|
include snippets/fastcgi-php.conf;
|
|
fastcgi_pass unix:/run/php/php8.3-fpm.sock;
|
|
}
|
|
} |