Why do I get AH00526 Syntax Error and Invalid “command 'xc2xa0'” when I restart apache2?











up vote
0
down vote

favorite












I am following this Apache-Passenger integration guide for hosting Ruby Apps. I have come across what appears to be an encoding error.



I created a test.conf file at the location /etc/apache2/sites-available and added the following virtual host entry to the file:



<VirtualHost *:443>
    ServerName some.domain.net
        ServerAlias some.domain.net

    # Tell Apache and Passenger where your app's 'public' directory is
    DocumentRoot /var/www/myApp/code/public

    PassengerRuby /usr/bin/ruby2.3

    # Relax Apache security settings
    <Directory /var/www/myApp/code/public>
      Allow from all
      Options -MultiViews
      # Uncomment this if you're on Apache >= 2.4:
      Require all granted
    </Directory>

</VirtualHost>


I then enabled the test.conf file by running a2ensite test.conf. However, when I tried to restart the apache server using sudo apache2ctl restart, I get this error output:



Nov 11 13:57:11 myserver apachectl[25287]: AH00526: Syntax error on line 2 of /etc/apache2/sites-enabled/test.conf:
Nov 11 13:57:11 myserver apachectl[25287]: Invalid command 'xc2xa0', perhaps misspelled or defined by a module not include


Full screenshot here:
Error message: Apache failed to restart



The first error refers to line 2 of my test.conf file, which is the ServerName field in the format of some.domain.net (leads to my DDNS provider). I don't see how this could be causing the error?
The second error points to an invalid command which translates to 'Non-breaking space' in UTF-8, what is this all about?



Any pointers on how to fix this would be amazing. Thanks in advance!










share|improve this question


















  • 1




    Looks like you have some invisible whitespace characters in that file at the mentioned location. I suggest you delete those lines, save the file, reopen it and retype the lines.
    – arkascha
    Nov 11 at 15:25










  • Thanks @arkascha, that was exactly my issue. Apparantly it doesn't like the line indentation. A hexdump revealed quite a lot of whitespace characters.
    – SolidCoder
    Nov 11 at 22:55















up vote
0
down vote

favorite












I am following this Apache-Passenger integration guide for hosting Ruby Apps. I have come across what appears to be an encoding error.



I created a test.conf file at the location /etc/apache2/sites-available and added the following virtual host entry to the file:



<VirtualHost *:443>
    ServerName some.domain.net
        ServerAlias some.domain.net

    # Tell Apache and Passenger where your app's 'public' directory is
    DocumentRoot /var/www/myApp/code/public

    PassengerRuby /usr/bin/ruby2.3

    # Relax Apache security settings
    <Directory /var/www/myApp/code/public>
      Allow from all
      Options -MultiViews
      # Uncomment this if you're on Apache >= 2.4:
      Require all granted
    </Directory>

</VirtualHost>


I then enabled the test.conf file by running a2ensite test.conf. However, when I tried to restart the apache server using sudo apache2ctl restart, I get this error output:



Nov 11 13:57:11 myserver apachectl[25287]: AH00526: Syntax error on line 2 of /etc/apache2/sites-enabled/test.conf:
Nov 11 13:57:11 myserver apachectl[25287]: Invalid command 'xc2xa0', perhaps misspelled or defined by a module not include


Full screenshot here:
Error message: Apache failed to restart



The first error refers to line 2 of my test.conf file, which is the ServerName field in the format of some.domain.net (leads to my DDNS provider). I don't see how this could be causing the error?
The second error points to an invalid command which translates to 'Non-breaking space' in UTF-8, what is this all about?



Any pointers on how to fix this would be amazing. Thanks in advance!










share|improve this question


















  • 1




    Looks like you have some invisible whitespace characters in that file at the mentioned location. I suggest you delete those lines, save the file, reopen it and retype the lines.
    – arkascha
    Nov 11 at 15:25










  • Thanks @arkascha, that was exactly my issue. Apparantly it doesn't like the line indentation. A hexdump revealed quite a lot of whitespace characters.
    – SolidCoder
    Nov 11 at 22:55













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am following this Apache-Passenger integration guide for hosting Ruby Apps. I have come across what appears to be an encoding error.



I created a test.conf file at the location /etc/apache2/sites-available and added the following virtual host entry to the file:



<VirtualHost *:443>
    ServerName some.domain.net
        ServerAlias some.domain.net

    # Tell Apache and Passenger where your app's 'public' directory is
    DocumentRoot /var/www/myApp/code/public

    PassengerRuby /usr/bin/ruby2.3

    # Relax Apache security settings
    <Directory /var/www/myApp/code/public>
      Allow from all
      Options -MultiViews
      # Uncomment this if you're on Apache >= 2.4:
      Require all granted
    </Directory>

</VirtualHost>


I then enabled the test.conf file by running a2ensite test.conf. However, when I tried to restart the apache server using sudo apache2ctl restart, I get this error output:



Nov 11 13:57:11 myserver apachectl[25287]: AH00526: Syntax error on line 2 of /etc/apache2/sites-enabled/test.conf:
Nov 11 13:57:11 myserver apachectl[25287]: Invalid command 'xc2xa0', perhaps misspelled or defined by a module not include


Full screenshot here:
Error message: Apache failed to restart



The first error refers to line 2 of my test.conf file, which is the ServerName field in the format of some.domain.net (leads to my DDNS provider). I don't see how this could be causing the error?
The second error points to an invalid command which translates to 'Non-breaking space' in UTF-8, what is this all about?



Any pointers on how to fix this would be amazing. Thanks in advance!










share|improve this question













I am following this Apache-Passenger integration guide for hosting Ruby Apps. I have come across what appears to be an encoding error.



I created a test.conf file at the location /etc/apache2/sites-available and added the following virtual host entry to the file:



<VirtualHost *:443>
    ServerName some.domain.net
        ServerAlias some.domain.net

    # Tell Apache and Passenger where your app's 'public' directory is
    DocumentRoot /var/www/myApp/code/public

    PassengerRuby /usr/bin/ruby2.3

    # Relax Apache security settings
    <Directory /var/www/myApp/code/public>
      Allow from all
      Options -MultiViews
      # Uncomment this if you're on Apache >= 2.4:
      Require all granted
    </Directory>

</VirtualHost>


I then enabled the test.conf file by running a2ensite test.conf. However, when I tried to restart the apache server using sudo apache2ctl restart, I get this error output:



Nov 11 13:57:11 myserver apachectl[25287]: AH00526: Syntax error on line 2 of /etc/apache2/sites-enabled/test.conf:
Nov 11 13:57:11 myserver apachectl[25287]: Invalid command 'xc2xa0', perhaps misspelled or defined by a module not include


Full screenshot here:
Error message: Apache failed to restart



The first error refers to line 2 of my test.conf file, which is the ServerName field in the format of some.domain.net (leads to my DDNS provider). I don't see how this could be causing the error?
The second error points to an invalid command which translates to 'Non-breaking space' in UTF-8, what is this all about?



Any pointers on how to fix this would be amazing. Thanks in advance!







apache syntax-error apache2 passenger virtualhost






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 11 at 15:13









SolidCoder

11




11








  • 1




    Looks like you have some invisible whitespace characters in that file at the mentioned location. I suggest you delete those lines, save the file, reopen it and retype the lines.
    – arkascha
    Nov 11 at 15:25










  • Thanks @arkascha, that was exactly my issue. Apparantly it doesn't like the line indentation. A hexdump revealed quite a lot of whitespace characters.
    – SolidCoder
    Nov 11 at 22:55














  • 1




    Looks like you have some invisible whitespace characters in that file at the mentioned location. I suggest you delete those lines, save the file, reopen it and retype the lines.
    – arkascha
    Nov 11 at 15:25










  • Thanks @arkascha, that was exactly my issue. Apparantly it doesn't like the line indentation. A hexdump revealed quite a lot of whitespace characters.
    – SolidCoder
    Nov 11 at 22:55








1




1




Looks like you have some invisible whitespace characters in that file at the mentioned location. I suggest you delete those lines, save the file, reopen it and retype the lines.
– arkascha
Nov 11 at 15:25




Looks like you have some invisible whitespace characters in that file at the mentioned location. I suggest you delete those lines, save the file, reopen it and retype the lines.
– arkascha
Nov 11 at 15:25












Thanks @arkascha, that was exactly my issue. Apparantly it doesn't like the line indentation. A hexdump revealed quite a lot of whitespace characters.
– SolidCoder
Nov 11 at 22:55




Thanks @arkascha, that was exactly my issue. Apparantly it doesn't like the line indentation. A hexdump revealed quite a lot of whitespace characters.
– SolidCoder
Nov 11 at 22:55

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250103%2fwhy-do-i-get-ah00526-syntax-error-and-invalid-command-xc2-xa0-when-i-restar%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250103%2fwhy-do-i-get-ah00526-syntax-error-and-invalid-command-xc2-xa0-when-i-restar%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python