Sha256: a7354b4638f60a579ce422b9eebe94dace91ae7c1f965690995138ab85c7ba9d

Contents?: true

Size: 1.24 KB

Versions: 7

Compression:

Stored size: 1.24 KB

Contents

worker_processes 1;

# Match this to the file owner of groonga database files if groonga-httpd is
# run as root.
user groonga groonga;

events {
  worker_connections 1024;
}

http {
  include mime.types;
  default_type application/octet-stream;
  sendfile on;
  keepalive_timeout 65;

  # The default groonga database path.
  groonga_database /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/var/lib/groonga/db/db;

  # Create a groonga database automatically if the groonga database doesn't
  # exist.
  #
  # Note that this option is danger when worker_processes is greater than 1.
  # Because one or more worker processes may create the same groonga database
  # at the same time. If you can create a groonga database before running
  # groonga-httpd, you should do it.
  groonga_database_auto_create on;

  server {
    listen 10041;
    server_name localhost;

    location /d/ {
      groonga on;
      # You can custom database path.
      # groonga_database /path/to/groonga/db;
    }

    location / {
      root /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/share/groonga/html/admin;
      index index.html;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
      root html;
    }
  }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rroonga-3.0.7-x86-mingw32 vendor/local/etc/groonga/httpd/groonga-httpd.conf
rroonga-3.0.6-x86-mingw32 vendor/local/etc/groonga/httpd/groonga-httpd.conf
rroonga-3.0.5-x86-mingw32 vendor/local/etc/groonga/httpd/groonga-httpd.conf
rroonga-3.0.4-x86-mingw32 vendor/local/etc/groonga/httpd/groonga-httpd.conf
rroonga-3.0.2-x86-mingw32 vendor/local/etc/groonga/httpd/groonga-httpd.conf
rroonga-3.0.1-x86-mingw32 vendor/local/etc/groonga/httpd/groonga-httpd.conf
rroonga-3.0.0-x86-mingw32 vendor/local/etc/groonga/httpd/groonga-httpd.conf