Blasted Hell

Spring on the Oder (Russian: Взорванный ад) is a 1967 Soviet action film directed by Ivan Lukinsky.[1][2][3]

Spring on the Oder
Russian: Взорванный ад
Directed byIvan Lukinsky
Written byAfanasi Salynsky
Starring
  • Gennadiy Bortnikov
  • Nikolai Skorobogatov
  • Imedo Kakhiani
  • Aleksandr Novikov
  • Sergey Yakovlev
Music byLeonid Afanasyev
CinematographyVadim Kornilyev
CountrySoviet Union
LanguageRussian

Plot

The film takes place during the Second World War. The Germans are preparing sabotage groups from Russians to send them to the Soviet Union. One of them decides to interfere with their plans...[4]

Cast

  • Gennadiy Bortnikov as Nikolay Berezhnikov
  • Nikolai Skorobogatov as Lifanov (as N. Skorobogatov)
  • Imedo Kakhiani as Archil Tatishvili (as I. Kakhiani)
  • Aleksandr Novikov as Mandrykin (as A. Novikov)
  • Sergey Yakovlev as Ivan Besavkin (as S. Yakovlev)
  • Olev Eskola as Anberg (as O. Eskola)
  • Heino Mandri as Emar (as H. Mandri)
  • Yevgeni Burenkov as Voronin[5]
gollark: I don't think there are any wordpress-specific issues as long as the rest of your config is right.
gollark: Well, what didn't work, then?
gollark: They aren't that hard. You just use `server_name` in the `server` block.
gollark: Not specifically wordpress, no.
gollark: I would probably use nginx, because I'm used to it and it has nicer configuration:```nginxhttp { # whatever important configuration you have for all HTTP servers, `nginx.conf` probably ships with some # fallback in case someone visits with an unrecognized Host header server { listen 80 default_server; listen [::]:80 default_server; return 301 http://somedomain$request_uri; } server { listen 80; # you may (probably do) want HTTPS instead, in which case this bit is somewhat different - you need to deal with certs and stuff, and use port 443 - also you should probably add HTTP/2 listen [::]:80; # IPv6 server_name domain1.com; location / { proxy_pass http://backend1:8080/; } } server { listen 80; listen [::]:80; server_name domain2.com; location / { proxy_pass http://backend2:8080/; } }}```

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.