Questions tagged [ssi]

Server Side Includes (SSI) is a simple interpreted server-side scripting language used almost exclusively for the Web. The most frequent use of SSI is to include the contents of one or more files into a web page on a web server.

References

371 questions
3
votes
0 answers

Apache web server SSI and Jetty

I am trying to use Apache mod_include for SSI. I have a java application that is being served currently with Jetty. I have been able to get SSI working directly with Jetty but I'm now trying to have SSI enabled via Apache. I am using mod_proxy to…
cstrzadala
  • 306
  • 2
  • 7
3
votes
2 answers

Apache: SSI inside SSI

Is there a way I can include include files inside include files? (Say that five times fast!) For example: Inside index.html: Inside include1.shtml: So the tree…
neezer
  • 19,720
  • 33
  • 121
  • 220
3
votes
0 answers

Running two Spring Boot applications behind Nginx with SSI

In short -- I have two Spring Boot apps with Keycloak authentication running behind Nginx, and I'd like to use App2's content into App1 via SSI. Also, single sign on is a requirement, so there should not be a need to log in to both apps…
aditya_medhe
  • 362
  • 1
  • 19
3
votes
2 answers

How to Remove white spaces from SSI include file?

I am working with Server Side Includes in WAMP on Windows. My html files are executing with SSI file includes but it is displaying the blank white spaces in the output. How can i remove the white spaces generated by ; ip = '<%= Request.UserHostAddress>'; But these are not working.
sreekanth
  • 709
  • 2
  • 9
  • 20
3
votes
5 answers

Including .asp file into html file

How can include .asp file inside of html file and have it proccessed besides having to process all html files with asp.
Boris Smirnov
  • 1,217
  • 4
  • 15
  • 27
3
votes
4 answers

Getting Apache to modify static webpages on the fly

I have been experimenting with woopra.com A web analytics tool. Which requires a piece of javascript code to be added to each page to function. This is easy enough with more dynamic sites with universal headers or footers but not for totally static…
Vagnerr
  • 2,977
  • 3
  • 33
  • 46
3
votes
2 answers

Microservice with own UI with Spring and Thymleaf

I have three web application microservices and one gateway that include the UI. So, what i want to do is to change the app's that every microservice has his own UI and the gateway should make server side includes. Im using Thymeleaf as template…
Markus Streicher
  • 133
  • 1
  • 1
  • 10
3
votes
1 answer

What's the difference between HTML and SHTML now?

I have learned that shtml is html with ssi, but I wonder I can set ssi even with html files in httpd.conf of apache: AddType text/html .shtml .html AddOutputFilter INCLUDES .shtml .html if do so, the html files and shtmls are the same? Thanks for…
hanzichi
  • 609
  • 2
  • 12
  • 22
3
votes
1 answer

SSI-like feature in ASP.NET / ASP.NET MVC

This may be a heretic question in a way. We have large site where lot of pages are still in ASP. Mostly, there are not really dynamic but they include (via SSI or Server.Execute) periodically regenerated chunks of HTML. It may look like a poor man's…
Jan Zich
  • 14,993
  • 18
  • 61
  • 73
3
votes
1 answer

How does nginx ssi work?

Cant find any info about it.. so I have few question I need to use it to help solve the "big problem" of cache invalidation 1)if I understand right it need to search in every file it served to find if it need to include other files sound like very…
Amir Bar
  • 3,007
  • 2
  • 29
  • 47
3
votes
1 answer

Apache SSI capturing groups not working correctly?

Using Apache 2.4.10 (ap_expr in no legacy mode), the following SSI does not return the expected capturing group: into the following components: Tag Function (ex: include, echo or…
NuclearPeon
  • 5,743
  • 4
  • 44
  • 52
3
votes
1 answer

Cannot enable server side includes in IIS5

I am trying to enable server side includes in some plain html files. I need help enabling ssi via IIS on the localhost. I am running XP Pro, and using both ie8 and firefox to test the files. Thanks for your help.
billmiller
  • 191
  • 1
  • 2
  • 6
3
votes
3 answers

IIS Server Side Includes doesn't process ColdFusion

How can I use the Server Side Includes module in IIS to include and process a ColdFusion file from a .htm file? I'm currently doing something like this in my html file: This includes the raw contents of the…
Mark
  • 1,244
  • 1
  • 11
  • 15
1 2
3
24 25