ISSUE: PLEASE USE URL http://192.3.134.156/

  • comodo ssl certificate issue
  • http tcp 80

    http://192.3.134.156/ is the root is / or the beginning. The index.html file is used to automatically route http traffic to the html file instead of folder view. http://192.3.134.156/index.html The primary page you are viewing. To view, you must download and open with a text editor. http://192.3.134.156/pages The target main variable is pointing to pages html. http://192.3.134.156/poster A directory for drawings I'll upload later. http://192.3.134.156/code sorting through. http://192.3.134.156/story sorting through.

    domain

    $config = @() $config += [PSCustomObject]@{ name = "divineyc.com" type = "A" host = "@" value = "192.3.134.156" ttl = "1 minute" } $config += [PSCustomObject]@{ name = "divineyc.com" type = "A" host = "www" value = "192.3.134.156" ttl = "1 minute" comments = @( "Why are there so many websites that you can buy a domain from?", "Who is the authorive answer for all domains why not just buy from them? Do we buy from a config that is not required?" ) }

    web server

    $config +=[PSCustomObject]@{ name = "HTML" code = "http://www.divineyc.com/index.txt" } $config += [PSCustomObject]@{ name = "nginx" file = "nginx.conf" content = ' worker_processes 1; events { worker_connections 1024; } http { autoindex on; include /etc/nginx/mime.types; default_type application/octet-stream; sendfile on; include /etc/nginx/conf.d/*.conf; keepalive_timeout 65; server { autoindex on; listen 80; listen 443; ssl_certificate /etc/ssl/divineyc_com.crt; ssl_certificate_key /etc/ssl/private.key; server_name www.divineyc.com divineyc.com 192.3.134.156; location / { root /usr/share/nginx/html; index index.html; } } }'.split("\n").trim()

    road map

    $config += [PSCustomObject]@{ name = "Echo Protocol" inbound_port = "7" status = "COMPLETED" comments = "echo is to ping.exe ICMP" } $config += [PSCustomObject]@{ name = "Secure Shell" inbound_port = "TCP 23" status = "not started" comments = "sshpass? or scp? or telnet? or ssh?" } $config += [PSCustomObject]@{ name = "Hypertext Transfer Protocol" port = "80" status = "COMPLETED" comments = "Is www requiring ssl certificate?" } $config += [PSCustomObject]@{ name = "File Transfer Protocol" port = "20" status = "in progress" comments = "FTP for root of /usr/share/nginx/" } $config += [PSCustomObject]@{ name = "TELNET" inbound_port = "TCP 23" status = "not started" comments = "same thing root of /usr/share/nginx or whatever is best suited for a single directory with all config info" } $config += [PSCustomObject]@{ name = "Simple Mail Transfer Protocol" port = 25 status = "in progress" comments = "yes @divineyc.com if I can get it working." } $config += [PSCustomObject]@{ name = "Domain Name config" inbound_port = "TCP 53" status = "not started" comments = "dns, approved. no forward or forward? 4.2.2.1?" } $config += [PSCustomObject]@{ name = "News Groups" inbound_port = "TCP 433" status = "not started" comments = "back in the day you can download programs, warez. AOL had one it as called 'Fate' MassMail" } $config += [PSCustomObject]@{ name = "Voice Over Internet Protocol (VOIP)" inbound_port = "UDP 5060" status = "not started" } $config += [PSCustomObject]@{ name = "Lightweight Directory Address Protocol" inbound_port = "TCP 389" status = "not started" } $config += [PSCustomObject]@{ name = "Server Message Block" inbound = "TCP 137" status = "Not Started" comments = "Ease of use." }