You should be aware that Security configured in a webserver specific file like htaccess will not be recognized by ionic serve
in your local testing environment.
So error only popup on production or staging environments in the field.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For more information on configuration, see: | |
# * Official English Documentation: http://nginx.org/en/docs/ | |
# * Official Russian Documentation: http://nginx.org/ru/docs/ | |
user nginx; | |
worker_processes auto; | |
error_log /var/log/nginx/error.log; | |
pid /var/run/nginx.pid; | |
events { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.IOException; | |
import jcifs.ntlmssp.NtlmFlags; | |
import jcifs.ntlmssp.Type1Message; | |
import jcifs.ntlmssp.Type2Message; | |
import jcifs.ntlmssp.Type3Message; | |
import jcifs.util.Base64; | |
import org.apache.http.impl.auth.NTLMEngine; | |
import org.apache.http.impl.auth.NTLMEngineException; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# /etc/init.d/tomcat7 -- startup script for the Tomcat 7 servlet engine | |
# | |
# Written by Miquel van Smoorenburg <miquels@cistron.nl>. | |
# Modified for Debian GNU/Linux by Ian Murdock <imurdock@gnu.ai.mit.edu>. | |
# Modified for Tomcat by Stefan Gybas <sgybas@debian.org>. | |
# Modified for Tomcat6 by Thierry Carrez <thierry.carrez@ubuntu.com>. | |
# Additional improvements by Jason Brittain <jason.brittain@mulesoft.com>. | |
# |