Skip to content

Instantly share code, notes, and snippets.

@KalleVuorjoki
KalleVuorjoki / crawl-drupal-jsonapi.sh
Created June 12, 2020 05:33
Script to crawl Drupal JSON:API endpoint to local filesystem.
#!/bin/bash
##
# Script to crawl Drupal JSON:API endpoint to local filesystem.
#
# Assumes endpoint to be /jsonapi and uses basic auth.
#
# Requirements:
# ag - https://github.com/ggreer/the_silver_searcher
# jq - https://github.com/stedolan/jq
@KalleVuorjoki
KalleVuorjoki / drupal.conf
Created April 29, 2019 05:32
Drupal 8 Nginx Config
server {
listen 80; # redundant in new nginx versions
server_name yourserver.com www.yourserver.com;
root /usr/share/nginx/www/drupal;
access_log off;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
location ~ \..*/.*\.php$ {
return 403;