All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.plugins.spincast-undertow.spincast-undertow.html Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
{% extends "../../layout.html" %}

{% block sectionClasses %}plugins hasBreadCrumb plugins-spincast-undertow{% endblock %}
{% block meta_title %}Plugins - Spincast Undertow{% endblock %}
{% block meta_description %}Spincast Undertow plugin provides the default HTTP server for a Spincast application.{% endblock %}

{% block scripts %}

{% endblock %}

{% block body %}

Overview

This plugin provides an implementation of the Server interface using the Undertow server.

Installation

If you use the spincast-default artifact and the standard Bootstrapper, this plugin is already installed by default so you have nothing to do!

If you start from scratch, using the spincast-core artifact, you can use the plugin by :

1. Adding this Maven artifact to your project:

<dependency>
    <groupId>org.spincast</groupId>
    <artifactId>spincast-plugins-undertow</artifactId>
    <version>{{spincast.spincastCurrrentVersion}}</version>
</dependency>

2. Installing the provided SpincastUndertowPluginModule module to your Guice context.

Plugin class

The class implementing the SpincastPlugin interface is SpincastUndertowPlugin.

Javadoc

Configuration

You can bind a SpincastUndertowConfig component if you want to change some default configurations. The default implementation class for those configurations is SpincastUndertowConfigDefault.

Reverse Proxy

If you use a reverse proxy, such as Nginx or Apache, make sure it sets those HTTP headers if the forwarded scheme, host or port are different then the original ones :

  • X-Forwarded-Proto: The original scheme (http or https)
  • X-Forwarded-Host: The original host.
  • X-Forwarded-Port: The original port.

The Spincast Undertow plugin will use those headers to provide the correct information when getFullUrlOriginal() is called.

{% endblock %}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy