Skip to content

Commit

Permalink
Add rewrite rule
Browse files Browse the repository at this point in the history
  • Loading branch information
dontlaugh committed Feb 27, 2023
1 parent a6fb419 commit 9e98814
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 0 deletions.
1 change: 1 addition & 0 deletions .buildkite/container.sh
Expand Up @@ -2,6 +2,7 @@

c=$(buildah from docker.io/nginx:1.23.3-alpine)
buildah add $c raku-doc-website.tar.gz /usr/share/nginx/html
buildah add $c default.conf /etc/nginx/conf.d/default.conf
buildah commit --rm $c quay.io/colemanx/raku-doc-website:latest
buildah push quay.io/colemanx/raku-doc-website:latest

54 changes: 54 additions & 0 deletions default.conf
@@ -0,0 +1,54 @@
server {
listen 80;
listen [::]:80;
server_name localhost;

#access_log /var/log/nginx/host.access.log main;

location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
# rewrite html extensions
rewrite ^(/.+)\.html$ $scheme://$host$1 permanent;

location / {
index index.html index.php;
# this way nginx first tries to serve the file
# as an .html although it doesn't have the extension
try_files $uri.html $uri $uri/ @handler;
}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}

32 changes: 32 additions & 0 deletions nginx.conf
@@ -0,0 +1,32 @@

user nginx;
worker_processes auto;

error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;


events {
worker_connections 1024;
}


http {
include /etc/nginx/mime.types;
default_type application/octet-stream;

log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';

access_log /var/log/nginx/access.log main;

sendfile on;
#tcp_nopush on;

keepalive_timeout 65;

#gzip on;

include /etc/nginx/conf.d/*.conf;
}

0 comments on commit 9e98814

Please sign in to comment.